Ubuntu – Wireless doesn’t work on an HP Pavillion DV6000 with an Intel 3945abg

11.10hp-pavilionintel-wirelesswireless

So I just installed Ubuntu 11.10 on my HP Pavillion DV6000 and my wireless will not connect. I been searching all over the Internet for answers so this is my last resort. Nobody can quite figure it out I've heard to get online and do updates cause i dont have a wired connection.

It reads my wireless and ask for passphase and then just cant connect. It keeps popping up every minute or so asking for the password. I have a Intel Corporation PRO/Wireless 3945abg [golan] network controller.

Im new to ubuntu im using a mobile hotspot for my wireless i then went to edit connections found my hotspot then went to the wireless security it is WPA & WPA2 Personal i made sure the passphase is right. The wierd thing is i upgraded from ubuntu 10.10 and the wireless worked fine on this computer. here is my information.

trav@trav-HP-Pavilion-dv6000-RG360UA-ABA:~$ sudo lshw -C network
  *-network               
       description: Wireless interface
       product: PRO/Wireless 3945ABG [Golan] Network Connection
       vendor: Intel Corporation
       physical id: 0
       bus info: pci@0000:02:00.0
       logical name: wlan0
       version: 02
       serial: 00:18:de:76:19:43
       width: 32 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
       configuration: broadcast=yes driver=iwl3945 driverversion=3.0.0-14-generic firmware=15.32.2.9 latency=0 link=no multicast=yes wireless=IEEE 802.11abg
       resources: irq:43 memory:d6000000-d6000fff
  *-network
       description: Ethernet interface
       product: PRO/100 VE Network Connection
       vendor: Intel Corporation
       physical id: 8
       bus info: pci@0000:05:08.0
       logical name: eth0
       version: 02
       serial: 00:16:36:a3:41:98
       size: 10Mbit/s
       capacity: 100Mbit/s
       width: 32 bits
       clock: 33MHz
       capabilities: pm bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=e100 driverversion=3.5.24-k2-NAPI duplex=half firmware=N/A latency=64 link=no maxlatency=56 mingnt=8 multicast=yes port=MII speed=10Mbit/s
       resources: irq:20 memory:d8000000-d8000fff ioport:4000(size=64)

Best Answer

The interesting part of the trace is this:

iwl3945 0000:0b:00.0: Card state received: HW:Kill SW:On

As you also indicated - your rfkill list all results show no hardware/software kill switch issues.

I found this very similar report.

The suggestion was to replace network-manager with wicd (search in software center/synaptic).


There is a bug report for your card on launchpad.

The last entry in the bug report looks promising:

Create a file named config in /etc/pm/config.d/, by doing this:

gksudo gedit /etc/pm/config.d/config

Add this line:

SUSPEND_MODULES="iwl3945".

Save and reboot.

Related Question