On Tue, 25 Aug 2020 01:42:52 -0300 nora-v <riveravaldezm...@gmail.com> wrote: > $ systemctl status networking.service > ● networking.service - Raise network interfaces > Loaded: loaded (/lib/systemd/system/networking.service; enabled; vendor > prese > Active: failed (Result: exit-code) since Mon 2020-08-24 22:41:10 -03; 2h > 54mi > Docs: man:interfaces(5) > Main PID: 423 (code=exited, status=1/FAILURE) > > And also: > > $ cat /etc/network/interfaces > source-directory /etc/network/interfaces.d > $ cat /etc/network/interfaces.d/setup > auto lo > iface lo inet loopback > > auto eth0 > iface eth0 inet dhcp
I experienced this exact same issue with this exact /etc/network/interfaces.d/setup file contents with Debian 10.6.0 live XFCE non-free iso fetched from https://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/current-live/amd64/iso-hybrid/debian-live-10.6.0-amd64-xfce+nonfree.iso I fixed it with this command: $ sudo sed -i 's/eth0/enp1s0/g' /etc/network/interfaces.d/setup where I found `enp1s0` in `$ ip l` output.