I'm encountering an issue with my Ethernet connection after performing a system update on my Kubuntu machine. Following the update and a reboot, the Ethernet port has ceased to function, although Wi-Fi connectivity remains unaffected.
Here are the steps I followed during the update process:
#!/bin/bash
sudo apt update
sudo apt upgrade -y
sudo apt full-upgrade -y
sudo apt install ubuntu-drivers-common -y
sudo ubuntu-drivers autoinstall
sudo snap refresh
fwupdmgr refresh --force
fwupdmgr get-updates --force
fwupdmgr update --force
sudo apt autoremove -y
sudo apt autoclean
sudo apt clean
Post-reboot, the Ethernet is no longer operational. The output of lspci -nn | grep -i ethernet
and sudo lshw -C network
indicates that the system recognizes the Ethernet controller (Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller) but marks it as 'UNCLAIMED'.
I've tried the solution proposed in this Ask Ubuntu thread (Wired connection stopped working after update (Realtek Ethernet) - Ubuntu 20.04) which involves creating a "r8169_disable_msi" file and updating GRUB, but this hasn't resolved the issue. Additionally, I've attempted to resolve the problem by shutting down and starting the computer instead of directly rebooting, but to no avail.
I'm seeking advice or potential solutions to re-enable my Ethernet connectivity. Any guidance or troubleshooting steps would be greatly appreciated.
Thank you for your assistance,
I appreciate your advice about checking if the previous Ethernet drivers were from the kernel or a DKMS module. However, I'm not entirely sure how to determine this or proceed with the steps you mentioned, like downgrading the kernel or recompiling the drivers. Could you possibly provide a bit more detailed guidance or point me to a resource that could help me with these processes?
I'm relatively new to managing these aspects of a Linux system, so any additional information would be greatly appreciated.
Thanks again!
– Zap Jan 16 '24 at 08:15