在 ubuntu 16.04 上安装 Wifi 卡驱动程序

在 ubuntu 16.04 上安装 Wifi 卡驱动程序

我对 linux/ubuntu 还比较陌生,在为我的笔记本电脑 (Lenovo Legion Y520) 安装 wifi 卡驱动程序时遇到了麻烦。我正在运行 ubuntu 16.04。

我运行了在研究中发现的一些命令。我目前已连接以太网电缆。

~$ lspci -vnn | grep Network
03:00.0 Network controller [0280]: Intel Corporation Device [8086:24fd] (rev 78)

~$ iwconfig
lo        no wireless extensions.

enp4s0    no wireless extensions.

~$ rfkill list
0: hci0: Bluetooth
Soft blocked: yes
Hard blocked: no

当我进入其他驱动程序时,它显示我的显卡有 NVIDIA 驱动程序,还有一个未知驱动程序

Using Processor microcode firmware for Intel CPUs from intel-microcode (proprietary)

我已经安装了它们。

但没有wifi卡驱动程序...

您有什么建议我可以尝试吗?

答案1

意味着默认内核不支持。

尝试:

桌面 sudo apt-get install --install-recommends linux-generic-hwe-16.04 xserver-xorg-hwe-16.04

服务器 sudo apt-get install --install-recommends linux-generic-hwe-16.04

从:https://wiki.ubuntu.com/Kernel/LTSEnablementStack

相关内容