Announcement

Collapse
No announcement yet.

initalizing eth0 on bootup

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    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

    Code:
    sudo cp /etc/network/interfaces.bak-0 /etc/network/interfaces
    and rebooted.

    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
    There is something that changes this file and Knetworkmanager stops functioning correctly.

    Comment

    Working...
    X