我知道有很多类似的情况,我也尝试过遵循网络上的一些答案,但是它们都不起作用,或者在此过程中导致了更多的错误。
我买了新的华硕 -K500CC,安装了 ubuntu 14.10(然后替换为 14.04),但没有连接 wifi 的选项。我的路由器正在运行,所有其他设备都可以看到它。
这里有一些信息,可以帮助你帮助我。
~$ rfkill list all
0: asus-wlan: Wireless LAN
Soft blocked: no
Hard blocked: no
1: asus-bluetooth: Bluetooth
Soft blocked: no
Hard blocked: no
~$ iwlist scan
eth0 Interface doesn't support scanning.
lo Interface doesn't support scanning.
~$ lspci | grep Network
03:00.0 Network controller: MEDIATEK Corp. MT7630e 802.11bgn Wireless Network Adapter
请帮忙 :((
答案1
- 从以下网址下载 MT7630e 控制器的驱动程序这页
- 在终端中
cd ~/Downloads; unzip MT7630E-master.zip; cd MT7630E-master; sudo chmod +x install.sh
(系统将提示您输入sudo
密码),然后./install.sh
- 重启
此时,每次系统启动时,控制器都应被硬阻塞,需要挂起到 RAM 并恢复才能解除阻塞;要解决这个问题:
- 在终端中:(
echo "options asus_nb_wmi wapf=4" | sudo tee /etc/modprobe.d/asus_nb.conf
系统将提示您输入sudo
密码) - 重启
如果这不能防止控制器在启动后被硬阻止,请尝试以下操作:
- 在终端中:
sudo gedit /etc/modprobe.d/asus_nb.conf
- 将此行替换
4
为:1
options asus_nb_wmi wapf=4
- 节省
- 出口
- 重启