WiFi 在 Ubuntu 18.04 LTS Lenovo Legion Y520 上无法使用

WiFi 在 Ubuntu 18.04 LTS Lenovo Legion Y520 上无法使用

我买了一台联想 Legion Y520,做的第一件事就是安装 Ubuntu 18.04 LTS。

我勾选了“安装第三方显卡和 wifi 硬件软件”复选框并安装了它。但是在 WiFi 设置中,显示“未找到 Wi-Fi 适配器”消息。

“软件和更新”中的“附加驱动程序”选项卡未显示任何与 WiFi 相关的内容。

我还在终端中运行了这个命令:

lspci | grep Network

输出结果如下:

02:00.0 Network controller: Qualcomm Atheros QCA9377 802.11ac Wireless Network Adapter (rev 31)

我应该尝试安装旧版本的 Ubuntu 吗?

提前致谢。

编辑:

我运行了这个命令:

lspci -knn | grep Net -A3; rfkill list

输出结果如下:

02:00.0 Network controller [0280]: Qualcomm Atheros QCA9377 802.11ac Wireless Network Adapter [168c:0042] (rev 31)
    Subsystem: Lenovo QCA9377 802.11ac Wireless Network Adapter [17aa:0901]
    Kernel driver in use: ath10k_pci
    Kernel modules: ath10k_pci, wl
03:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 10)
0: ideapad_wlan: Wireless LAN
    Soft blocked: no
    Hard blocked: yes
1: ideapad_bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: yes
2: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
3: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no

答案1

该设备被平台 ideapad 驱动程序阻止。在终端中运行

sudo tee /etc/modprobe.d/blacklist-ideapad.conf <<< "blacklist ideapad_laptop"

然后重新启动。

另外我还建议删除您安装的 Broadcom 驱动程序。

sudo apt purge bcmwl-kernel-source

相关内容