Por fim, funciona com os dois:
Primeiro ( link )
$ sudo mv /etc/resolv.conf /etc/backup.resolv.conf
Em seguida, execute ( link )
$ ifconfig
e veja o nome do seu adaptador de rede. O meu é: enp0s31f6
agora execute este comando
$ sudo nano /etc/network/interfaces
e você deve obter algo dentro .... delete tudo e cole isto (mas mude o nome do adaptador de rede onde enp0s31f6 é):
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
# The primary network interface
auto enp0s31f6
iface enp0s31f6 inet dhcp
salve o documento e reinicie ...
No meu caso eu só tinha em / etc / network / interfaces as três linhas abaixo
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
Eu tive que adicionar no topo
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
e abaixo:
# The primary network interface
auto enp0s31f6
iface enp0s31f6 inet dhcp