当我第一次安装 ubuntu 15 时,wifi 很好,用了几个月,直到我对我的机器做了一些我不记得的事情,wifi 被禁用了。
当使用 rfkill 时显示:
Soft blocked: no
Hard blocked: yes
尝试过
sudo rfkill unlock all
但什么也没有。
我做到了:
- 重新安装 ubuntu(wifi 仍然无法使用)
- 重新安装 Windows(WiFi 正常)
- 按 wifi 键 (F12)(不起作用)
- 将 BIOS 配置重置为默认值(wifi 仍然不工作)
任何帮助将不胜感激
编辑
$ lsmod | grep -e wmi -e lap
hp_wmi 16384 0
sparse_keymap 16384 1 hp_wmi
snd_rawmidi 32768 1 snd_seq_midi
snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
snd 81920 21 snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_hda_codec_idt,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec_generic,snd_hda_codec,snd_hda_intel,snd_seq_device
mxm_wmi 16384 1 nouveau
wmi 20480 3 hp_wmi,mxm_wmi,nouveau
答案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 连接以输入凭据
完成,您的互联网已恢复。
参考 =这里
我希望这有效......