我有一台 hp pavilion G6 2231-tx 笔记本电脑,运行 ubuntu 14.04 和 windows 双启动。我的笔记本电脑上的 wifi 在 ubuntu 中无法使用。当我将鼠标悬停在桌面右上角的网络图标上时,它显示 Wi-fi 已被硬件禁用。
我见过几篇类似的帖子:
还有很多。
我已经尝试过的事情:
- 检查了 BIOS。
- 键盘上的硬件开关(f12/fn+f12)
rfkill unblock all
- 安装 wifi 驱动程序,安装 Broadcom 无线驱动程序(
lspci -nn -d 14e4:
虽然没有返回结果) - 检查了
/etc/modprobe.d/blacklist.conf
黑名单中的内容。
但这些都没什么用。请提出解决方案。
编辑
lspci -knn | grep Net -A2; rfkill list
返回
07:00.0 Network controller [0280]: Ralink corp. RT3290 Wireless 802.11n 1T/1R PCIe [1814:3290] Subsystem: Hewlett-Packard Company Ralink RT3290LE 802.11bgn 1x1 Wi-Fi and Bluetooth 4.0 Combo Adapter [103c:18ec] Kernel driver in use: rt2800pci 0: phy0: Wireless LAN Soft blocked: no Hard blocked: yes
编辑2
现在我遵循了这个: Ralink rt3290 wifi 驱动程序在 Ubuntu 14.04 中不起作用
现在“无线被硬件开关禁用”的消息已被删除,但现在根本没有 wifi 信号。现在rfkill list
没有返回任何结果。
答案1
这不是 Ubuntu 的问题。这不是任何驱动程序的问题。这是我(也可能是你)造成的。
在观看一些视频时...我尝试使用以下方式增加音量:Fn + F10
组合键...但我错误地按下了带有“收音机”符号的Fn + F12
键,从而禁用了我的 wifi 连接。Wifi button
在终端中运行以下命令,您可以看到该问题:
> rfkill list all
0: Toshiba Bluetooth: Bluetooth #or whatever it is
Soft blocked: no
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: yes `<------ that's because I press Wifi button (above) `mistakenly`
解决方案:再次按下Fn + F12
(或其他带有无线电符号的键)
现在再次运行相同的命令:
> rfkill list all
0: Toshiba Bluetooth: Bluetooth #or whatever it is
Soft blocked: no
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
<------ no means solved.
现在,转到:
(如果键盘上有 Windows 按钮)> 设置 > Wifi > 移至开启 > 选择您的 Wiki 连接以输入凭据
完成,您的互联网已恢复。
参考 =这里
我希望这有效......