Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: Intel 4965AGN wireless card on Ubuntu 9.10 doesn't always work

  1. #1
    Join Date
    Feb 2010
    Beans
    3

    Intel 4965AGN wireless card on Ubuntu 9.10 doesn't always work

    I have problems with Intel 4965AGN wireless card on a Dell Latitude D830 with Ubuntu 9.10 64-bit. After googling the problem and reading a lot of forum posts I have got to the conclusion that something is wrong with the drivers and that the rfkill value isn't set correctly. I don't know what additional information you need but I will explain how the system behaves and how the rfkill value looks like.

    When I boot the computer with the RF switch set to on the wireless doesn't get enabled. If I switch the RF switch to off the bluetooth gets the disabled. And when I turn the switch back on the bluetooth gets enabled but nothing happens to the wireless, it is still disabled.

    /sys/class/rfkill/ contains the following after boot:
    Code:
    name                type            state
    ---------------------------------------------
    hci0,               bluetooth       1
    dell-wifi           wlan            2
    dell-bluetooth      bluetooth       2
    phy0                wlan            1
    /sys/class/rfkill/ contains the following when the switch has been turned to off:

    Code:
    name                type           state
    ---------------------------------------------
    dell-wifi           wlan           1
    dell-bluetooth      bluetooth      1
    phy0                wlan           2


    /sys/class/rfkill/ contains the following when the switch has been turned back to on:

    Code:
    name                type            state
    ---------------------------------------------
    dell-wifi           wlan            2
    dell-bluetooth      bluetooth       2
    phy0                wlan            1
    hci0                bluetooth       1
    On the other hand. When I boot the computer with the RF switch set to off the wireless is disabled at boot. If I switch the RF switch to on the bluetooth and wireless gets the enabled. And when I turn the switch back off the bluetooth and wireless gets disabled. So everything works as it should when I boot with the switch set to off.

    /sys/class/rfkill/ contains the following after boot:

    Code:
    name                type             state
    ---------------------------------------------
    dell-wifi           wlan           2
    dell-bluetooth      bluetooth      2
    phy0                wlan           2
    /sys/class/rfkill/ contains the following when the switch has been turned to on:

    Code:
    name                type           state
    ---------------------------------------------
    dell-wifi           wlan           1
    dell-bluetooth      bluetooth      1
    phy0                wlan           1
    hci0                bluetooth      1
    /sys/class/rfkill/ contains the following when the switch has been turned back to off:

    Code:
    name                type           state
    ---------------------------------------------
    dell-wifi           wlan           2
    dell-bluetooth      bluetooth      2
    phy0                wlan           2

  2. #2
    Join Date
    Nov 2007
    Beans
    156

    Re: Intel 4965AGN wireless card on Ubuntu 9.10 doesn't always work

    The kernal provides support directly for the 4965AGN. Intel has let a few faulty 4965AGN go out the door with the N not working correctly, if at all. Is this the mini-PCI version or a USB version? I have found with a dual-band router, you will connect to both 2.4 and 5 GHZ at the same time if both are transmitting. If you can, turn off the a and g on the intel and just connect with the N. I would personally do this on the router, also, if you don't have any older G equipment or other machines using the connection.

  3. #3
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Intel 4965AGN wireless card on Ubuntu 9.10 doesn't always work

    Is this the mini-PCI version or a USB version?
    I was not aware there is a USB version of Intel 4965ABG. I want one! Do you have a link or source?

    Does the odd behavior change if dell-laptop is removed?
    Code:
    sudo rmmod -f dell-laptop
    Now try the wireless button and see if things improve.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  4. #4
    Join Date
    Feb 2010
    Beans
    3

    Re: Intel 4965AGN wireless card on Ubuntu 9.10 doesn't always work

    Yes after removing the dell-laptop module it started working correctly. What is the dell-laptop module for? How can I fix this without having to remove the module manually?

  5. #5
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Intel 4965AGN wireless card on Ubuntu 9.10 doesn't always work

    dell-laptop is supposed to enable some functions that are unique to Dell. As you can see, it doesn't work well. I suspect that it conflicts with another similar module, dell-wmi. If you notice that other functions now don't work correctly, obviously reverse the removal.

    When I bought my first laptop, an IBM T30, certain functions were not well implemented, but they were not functions vital to me. In your case, wireless is vital! If you have ill effects, post back so the searchers will learn from your experience.

    Please do:
    Code:
    sudo su
    echo "blacklist dell-laptop" >> /etc/modprobe.d/blacklist.conf
    exit
    Before you press Enter, proofread carefully. The double arrows append the line to any other lines currently in the file.

    dell-laptop is now blacklisted and will not reload on boot, unless, of course, you edit /etc/modprobe.d/blacklist.conf to remove the blacklist line.
    Last edited by chili555; April 26th, 2011 at 07:32 PM.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  6. #6
    Join Date
    Feb 2010
    Beans
    3

    Post Re: Intel 4965AGN wireless card on Ubuntu 9.10 doesn't always work

    Just curious... Who is responsible for the development of the dell-laptop module? Where can I report the bug? Where can I get the source code, I'm a developer and is just curious how this is implemented.

  7. #7
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Intel 4965AGN wireless card on Ubuntu 9.10 doesn't always work

    This is all I know at this time:
    $ modinfo dell-laptop
    filename: /lib/modules/2.6.31-19-generic/kernel/drivers/platform/x86/dell-laptop.ko
    alias: dmi:*svnDellInc.:*:ct8:*
    license: GPL
    description: Dell laptop driver
    author: Matthew Garrett <mjg@redhat.com>
    --- snip ---
    Of course, the issue may be in the way that Ubuntu implements it. You might search Launchpad for pending bugs and add your comments.

    I have helped three or four people here with Dell laptops and non-funtioning wireless using this method, so it's a known issue.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  8. #8
    Join Date
    Oct 2009
    Beans
    11

    Re: Intel 4965AGN wireless card on Ubuntu 9.10 doesn't always work

    You helped another Dell user, thanks!

  9. #9
    Join Date
    Feb 2010
    Beans
    10

    Re: Intel 4965AGN wireless card on Ubuntu 9.10 doesn't always work

    This worked for me as well. Thanks for the good info!

  10. #10
    Join Date
    Jun 2010
    Beans
    2

    Re: Intel 4965AGN wireless card on Ubuntu 9.10 doesn't always work

    I've been working for four days on getting my wireless connection - I'm running Ubuntu 10.04 (downloaded using Wubi) on a Dell Inspiron with a Dell Wireless 1397 card (BCM4312). I tried everything and couldn't get the hardblock turned off; removing dell-laptop was the answer, so thanks! (New to Linux too; the last four days sucked but I've learned a lot after spending all this time in the terminal)

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •