gamblor01
09-25-2009, 09:42 AM
I was recently able to obtain a new laptop at work. Rather than reinstalling the OS, reconfiguring all of the software, and then copying over all of my data from my old laptop -- I decided to try to use dd to clone my drive. It worked pretty darn well (thanks Saikee!). However, I have two problems that I have noticed so far:
1) The system does not seem to offer me the option to install the proprietary nvidia driver.
I was able to manually install the nvidia-glx-180 package and then edit xorg.conf appropriately and I'm running with the nvidia driver now. So this problem is resolved (though I still find it odd it didn't even offer my the "restricted hardware drivers" option in System -> Administration).
2) Wireless is not working.
I checked dmesg and it doesn't seem to have any errors in it. Here is a list of things I have checked/found which I think might be relevant:
- Oddly enough it seems that my wired device always gets renamed from eth0 to eth1, and my wireless device gets renamed from wlan0 to wlan1. I'm not sure why (though I would prefer them to be eth0 and wlan0).
- dmesg output looks good shows some message about the wlan1 link not being ready
bmayes@bdmlin:~$ dmesg | grep wlan
[ 10.915831] udev: renamed network interface wlan0 to wlan1
[ 185.179556] bridge-wlan0: peer interface wlan0 not found, will wait for it to come up
[ 185.179559] bridge-wlan0: attached
[ 189.016091] ADDRCONF(NETDEV_UP): wlan1: link is not ready
bmayes@bdmlin:~$ dmesg | grep -i network
[ 2.754168] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k6
[ 3.063416] 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
[ 9.041059] udev: renamed network interface eth0 to eth1
[ 10.915831] udev: renamed network interface wlan0 to wlan1
[ 177.507871] type=1505 audit(1253885209.412:5): operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" name2="default" pid=3977
bmayes@bdmlin:~$ dmesg | grep -i iwlagn
[ 10.728577] iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, 1.3.27ks
[ 10.728580] iwlagn: Copyright(c) 2003-2008 Intel Corporation
[ 10.728681] iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 10.728713] iwlagn 0000:03:00.0: setting latency timer to 64
[ 10.728822] iwlagn: Detected Intel Wireless WiFi Link 4965AGN REV=0x4
[ 10.769310] iwlagn: Tunable channels: 11 802.11bg, 13 802.11a channels
[ 10.769411] iwlagn 0000:03:00.0: irq 2295 for MSI/MSI-X
[ 188.291079] iwlagn 0000:03:00.0: firmware: requesting iwlwifi-4965-2.ucode
[ 188.317509] iwlagn: Radio disabled by HW RF Kill switch
- lsmod seems to have the correct driver loaded. This page shows that iwlagn is the correct driver for my chipset:
https://help.ubuntu.com/community/HardwareSupportComponentsWirelessNetworkCardsIntel
and here is what I have:
bmayes@bdmlin:~$ lspci -v | grep -A 7 "4965"
03:00.0 Network controller: Intel Corporation PRO/Wireless 4965 AG or AGN [Kedron] Network Connection (rev 61)
Subsystem: Intel Corporation Device 1010
Flags: bus master, fast devsel, latency 0, IRQ 2295
Memory at df2fe000 (64-bit, non-prefetchable) [size=8K]
Capabilities: <access denied>
Kernel driver in use: iwlagn
Kernel modules: iwlagn
bmayes@bdmlin:~$ lsmod | grep iwlagn
iwlagn 100228 0
iwlcore 93184 1 iwlagn
mac80211 217592 2 iwlagn,iwlcore
cfg80211 38288 3 iwlagn,iwlcore,mac80211
Any ideas?
1) The system does not seem to offer me the option to install the proprietary nvidia driver.
I was able to manually install the nvidia-glx-180 package and then edit xorg.conf appropriately and I'm running with the nvidia driver now. So this problem is resolved (though I still find it odd it didn't even offer my the "restricted hardware drivers" option in System -> Administration).
2) Wireless is not working.
I checked dmesg and it doesn't seem to have any errors in it. Here is a list of things I have checked/found which I think might be relevant:
- Oddly enough it seems that my wired device always gets renamed from eth0 to eth1, and my wireless device gets renamed from wlan0 to wlan1. I'm not sure why (though I would prefer them to be eth0 and wlan0).
- dmesg output looks good shows some message about the wlan1 link not being ready
bmayes@bdmlin:~$ dmesg | grep wlan
[ 10.915831] udev: renamed network interface wlan0 to wlan1
[ 185.179556] bridge-wlan0: peer interface wlan0 not found, will wait for it to come up
[ 185.179559] bridge-wlan0: attached
[ 189.016091] ADDRCONF(NETDEV_UP): wlan1: link is not ready
bmayes@bdmlin:~$ dmesg | grep -i network
[ 2.754168] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k6
[ 3.063416] 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
[ 9.041059] udev: renamed network interface eth0 to eth1
[ 10.915831] udev: renamed network interface wlan0 to wlan1
[ 177.507871] type=1505 audit(1253885209.412:5): operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" name2="default" pid=3977
bmayes@bdmlin:~$ dmesg | grep -i iwlagn
[ 10.728577] iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, 1.3.27ks
[ 10.728580] iwlagn: Copyright(c) 2003-2008 Intel Corporation
[ 10.728681] iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 10.728713] iwlagn 0000:03:00.0: setting latency timer to 64
[ 10.728822] iwlagn: Detected Intel Wireless WiFi Link 4965AGN REV=0x4
[ 10.769310] iwlagn: Tunable channels: 11 802.11bg, 13 802.11a channels
[ 10.769411] iwlagn 0000:03:00.0: irq 2295 for MSI/MSI-X
[ 188.291079] iwlagn 0000:03:00.0: firmware: requesting iwlwifi-4965-2.ucode
[ 188.317509] iwlagn: Radio disabled by HW RF Kill switch
- lsmod seems to have the correct driver loaded. This page shows that iwlagn is the correct driver for my chipset:
https://help.ubuntu.com/community/HardwareSupportComponentsWirelessNetworkCardsIntel
and here is what I have:
bmayes@bdmlin:~$ lspci -v | grep -A 7 "4965"
03:00.0 Network controller: Intel Corporation PRO/Wireless 4965 AG or AGN [Kedron] Network Connection (rev 61)
Subsystem: Intel Corporation Device 1010
Flags: bus master, fast devsel, latency 0, IRQ 2295
Memory at df2fe000 (64-bit, non-prefetchable) [size=8K]
Capabilities: <access denied>
Kernel driver in use: iwlagn
Kernel modules: iwlagn
bmayes@bdmlin:~$ lsmod | grep iwlagn
iwlagn 100228 0
iwlcore 93184 1 iwlagn
mac80211 217592 2 iwlagn,iwlcore
cfg80211 38288 3 iwlagn,iwlcore,mac80211
Any ideas?