我对我的互联网驱动程序做了一些不好的事情(尝试安装/使蓝牙工作)现在没有连接。
尝试了各种已发布的修复方法,但目前没有积极的结果。任何帮助都非常感谢!
输出:
guy@guy-Serie-1500:~$ lspci | egrep -i --color 'network|ethernet'
01:00.0 Network controller: Ralink corp. RT3290 Wireless 802.11n 1T/1R PCIe
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 06)
guy@guy-Serie-1500:~$ ifconfig -a
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 7614 bytes 471123 (471.1 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 7614 bytes 471123 (471.1 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
guy@guy-Serie-1500:~$ sudo lshw -class network
[sudo] password for guy:
*-network UNCLAIMED
description: Network controller
product: RT3290 Wireless 802.11n 1T/1R PCIe
vendor: Ralink corp.
physical id: 0
bus info: pci@0000:01:00.0
version: 00
width: 32 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: latency=0
resources: memory:f0510000-f051ffff
*-network UNCLAIMED
description: Ethernet controller
product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:02:00.0
version: 06
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix vpd bus_master cap_list
configuration: latency=0
resources: ioport:2000(size=256) memory:f0404000-f0404fff memory:f0400000-f0403fff
答案1
请重新启动。使用 Shift 键中断启动过程以进入 GRUB 菜单:https://help.ubuntu.com/community/Grub2
选择高级选项并向下滚动到早期内核版本 4.15.0-42-generic。按 Enter 启动它。
启动到 -42 后,我猜你的网络现在应该可以正常工作了。如果是这样,我们将重新安装 -43:
sudo apt update
sudo apt install --reinstall linux-image-4.15.0-43-generic
sudo apt install --reinstall linux-modules-4.15.0-43-generic
一切完成后,重新启动,-43 现在也应该可以工作了。
编辑:在我们的聊天中,我们发现您安装的以太网驱动程序是 r8168-dkms。该驱动程序未签名或签名不正确,无法满足安全启动要求。在 BIOS/EFI 中禁用安全启动后,驱动程序正确加载,以太网正常运行。
我们还发现无线驱动程序被列入了黑名单。我们删除了黑名单,打开了飞行模式开关,现在无线功能也可以正常工作了。