The dkms 8.038 changelog lists "Use module aliases for PCI IDs supported by r8168 instead of blacklisting r8169. (Closes: #739394)".
Instead of:
Code:
echo "blacklist r8169" | sudo tee -a /etc/modprobe.d/blacklist-r8169.conf
You might want to:
Code:
echo "# map the specific PCI IDs instead of blacklisting the whole r8169 module" | sudo tee -a /etc/modprobe.d/r8168-dkms.conf
echo -e "alias\tpci:v00001186d00004300sv00001186sd00004B10bc*sc*i*\tr8168" | sudo tee -a /etc/modprobe.d/r8168-dkms.conf
echo -e "alias\tpci:v000010ECd00008168sv*sd*bc*sc*i*\t\t\tr8168" | sudo tee -a /etc/modprobe.d/r8168-dkms.conf
And for the users of Ubuntu without network manager, instead of: "sudo service network-manager restart" you can use
Code:
ifconfig p5p1 down;ifconfig p5p1 up
.
Bookmarks