ifconfig 中缺少 eth0 和 wlan0(Ubuntu 16.04)

ifconfig 中缺少 eth0 和 wlan0(Ubuntu 16.04)

我已经使用 Ubuntu 16.04 一段时间了,直到几天前一切都按预期运行。屏幕右上角出现了 wifi 图标,但单击它时不会显示任何网络。我也尝试通过以太网连接,但无法检测到。

我已经在这个网站上做了一些研究,但到目前为止,没有任何解决方案有效。以下是我运行的一些命令:

ifconfig
- Only displays lo information

lspci
- Both the Network controller and the Ethernet controller show up

lshw -class network
- Both controllers description begins with "*-network UNCLAIMED" (which looks suspicious)

rfkill list
- Does not display anything

iwconfig
- Only displays lo

我也试过了sudo service network-manager restart,但没用。任何帮助都非常感谢。提前致谢!

答案1

我怀疑 linux-image-extra 没有随内核更新安装。尝试sudo apt-get install --reinstall linux-image-extra-$(uname -r) 然后重启

相关内容