My notebook's internal WIFI adapter stopped working (maybe because of overheating?). I bought a USB WIFI (TP-LINK 150Mbs Wireless N USB Adapter TL-WN723N). Now internet is fine in Windows 7.
But not in Ubuntu I think it's still trying to use the internal adapter. (Atheros)
Can I disable the internal adapter and get Ubuntu to use the USB WIFI?
It's a bit of a pain to fix 'cos I have to reboot between Windows with internet and Ubuntu with no internet...
11 Answer
Please run this terminal command:
sudo lshw -C networkFind your internal (Atheros??) device and find its driver. It may be ath9k or ath5k or similar. Now blacklist it:
sudo -i
echo "blacklist ath9k" >> /etc/modprobe.d/blacklist.conf
modprobe -r ath9k
exitOf course, substitute the driver you found, if not ath9k. If in doubt, stop and ask here.
1