我试图在我的新笔记本电脑(联想 Yoga Pro 2)上安装 Ubuntu 14 beta 2,但无法使用无线。因此,我使用了rfkill list all
,并得到了结果:
0: ideapad_wlan: Wireless LAN
Soft blocked: yes
Hard Blocked: yes
1: ideapad_bluetooth: Bluetooth
Soft blocked: yes
Hard Blocked: yes
2: hci0: Buetooth
Soft blocked: yes
Hard Blocked: no
然而,当我从刚刚安装的 USB 驱动器启动时,运行rfkill list all
输出:
0: ideapad_wlan: Wireless LAN
Soft blocked: yes
Hard Blocked: yes
1: ideapad_bluetooth: Bluetooth
Soft blocked: yes
Hard Blocked: yes
2: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
3: hci0: Buetooth
Soft blocked: yes
Hard Blocked: no
使用后sudo modprobe -r ideapad_laptop && sudo rfkill unblock all
无线功能开始工作。但我不明白为什么 phy0 不在安装中,如何加载它,或者以其他方式使无线功能工作。
答案1
我建议您为设备安装最新的固件。请建立临时有线以太网连接,打开终端并执行以下操作:
cd /lib/firmware
sudo wget https://git.kernel.org/cgit/linux/kernel/git/egrumbach/linux-firmware.git/plain/iwlwifi-7260-7.ucode
sudo modprobe -r iwlmvm
sudo modprobe iwlwifi
断开以太网后无线现在应该可以工作了。