When rebooting the OS
waiting for network configuration waiting up to 60 seconds for network configuration The device is not running. To raise from the console you need:
sudo ifconfig 192.168.1.210 eth0 If you run this:
sudo ifconfig eth0 then the IP4 settings are not loaded
My actions:
sudo apt-get purge --yes network-manager sudo nano /etc/network/interfaces auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.210 netmask 255.255.255.0 gateway 192.168.1.1 dns-nameservers 192.168.1.1 77.88.88.8 Same question for graphic utility
auto eth0directive toallow-hotplug eth0. on a related question: nm should ignore the interfaces that are configured “manually”, i.e. those mentioned (in this case) in/etc/network/interfaces*. - aleksandr barakin