Re: initalizing eth0 on bootup
Hello
I had the same problem.
To fix it I noticed that in /etc/network there was a file named interfaces.bak-0 which had the original configuration of the interfaces file, then i replaced interfaces with interfaces.bak-0 by doing
and rebooted.
the contents of my /etc/network/interfaces looks like this:
There is something that changes this file and Knetworkmanager stops functioning correctly.
Hello
I had the same problem.
To fix it I noticed that in /etc/network there was a file named interfaces.bak-0 which had the original configuration of the interfaces file, then i replaced interfaces with interfaces.bak-0 by doing
Code:
sudo cp /etc/network/interfaces.bak-0 /etc/network/interfaces
the contents of my /etc/network/interfaces looks like this:
Code:
auto lo iface lo inet loopback auto eth0 #iface eth0 inet dhcp auto eth1 #iface eth1 inet dhcp auto eth2 #iface eth2 inet dhcp auto ath0 #iface ath0 inet dhcp auto wlan0 iface wlan0 inet dhcp
Comment