2

I booted up Ubuntu, noticed I had no internet. Ran ifconfig, eth0 is now eno1 and has no IP. I ran dhclient eno1, no DHCP server found. Went to check 70-persistent-net.rules, it's gone. I rebooted and tried to regenerate it, no luck. I am kind of a linux noob and this problem is driving me crazy.

oh, and /etc/network/interfaces only has lo, no other interfaces listed.

I haven't pasted any command outputs because as I said, no internet. If need be I will manually type out terminal outputs, but I don't want to have to do excessive typing.

Any and all help is greatly appreciated, thanks.

UPDATE: WiFi is working now, although it cuts out every 10-15min and the interface has the be brought down and up to reconnect.

mCloud
  • 21

1 Answers1

1

I had the same problem and I solved it by editing /etc/network/interfaces

sudo -H gedit /etc/network/interfaces

You'll see something like this:

auto lo
iface lo inet loopback

Add eno1:

auto lo
iface lo inet loopback

auto eno1
iface eno1 inet dhcp
Zanna
  • 72,312
user679130
  • 11
  • 1