华硕X550VC(Qualcomm Atheros AR9485 无线网卡)解决在ubuntu14.04/15.04下无线网卡不能链接无线网问题
根据这五个命令来解决无线网卡驱动问题,最后一部echo数据后自行重启系统即可完美解决驱动问题。有问题请留言。
lspci -nnk | grep -iA2 net
lsmod
iwconfig
rfkill list
lspci -nnk | grep -iA2 net
01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI
Express Fast Ethernet controller [10ec:8136] (rev 05)
Subsystem: Acer Incorporated [ALI] Device [1025:061f]
Kernel driver in use: r8169
02:00.0 Network controller [0280]: Qualcomm Atheros AR9485 Wireless Network Adapter [168c:0032] (rev 01)
Subsystem: Foxconn International, Inc. Device [105b:e047]
03:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5209 PCI Express Card Reader [10ec:5209] (rev 01)
使用lsmod查看
Module Size Used by
nls_iso8859_1 12713 1
parport_pc 32701 0
ppdev 17671 0
bnep 19564 2
rfcomm 69070 0
bluetooth 371874 10 bnep,rfcomm
vesafb 13828 1
lp 17759 0
parport 42299 3 lp,ppdev,parport_pc
hid_generic 12548 0
usbhid 53014 0
hid 101512 2 hid_generic,usbhid
usb_storage 62062 1
rtsx_pci_sdmmc 23527 0
ahci 25819 2
libahci 31898 1 ahci
rtsx_pci 45546 1 rtsx_pci_sdmmc
r8169 67341 0
mii 13934 1 r8169
命令行输入iwconfig
eth0 no wireless extensions.
lo no wireless extensions.
rfkill list
这最后一个命令不会输出任何东西,代码意思大概是关闭硬件驱动加密。
echo “options ath9k nohwcrypt=1” | sudo tee /etc/modprobe.d/ath9k.conf
sudo modprobe -rfv ath9k
sudo modprobe -v ath9k
有什么问题欢迎留言讨论。
ubuntu15.04安装usb无线网卡:http://www.linuxdiyf.com/linux/14449.html
64位ubuntu 15.04只能连接无线网络无法连接有线网络的问题:http://www.linuxdiyf.com/linux/13339.html
Ubuntu15.04中Thinkpad x240无线网卡rtl8192ee驱动的问题:http://www.linuxdiyf.com/linux/11932.html