Failed to start "Raise network interfaces"
See systemctl status networking.service for details
dann:
Code: Alles auswählen
● networking.service - Raise network interfaces
Loaded: loaded (/lib/systemd/system/networking.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since Sun 2021-09-19 15:30:59 CEST; 1h 7min ago
Docs: man:interfaces(5)
Process: 916 ExecStart=/sbin/ifup -a --read-environment (code=exited, status=1/FAILURE)
Main PID: 916 (code=exited, status=1/FAILURE)
CPU: 54ms
Sep 19 15:30:59 debian dhclient[972]: than a configuration issue please read the section on submitting
Sep 19 15:30:59 debian dhclient[972]: bugs on either our web page at www.isc.org or in the README file
Sep 19 15:30:59 debian dhclient[972]: before submitting a bug. These pages explain the proper
Sep 19 15:30:59 debian dhclient[972]: process and the information we find helpful for debugging.
Sep 19 15:30:59 debian dhclient[972]:
Sep 19 15:30:59 debian dhclient[972]: exiting.
Sep 19 15:30:59 debian ifup[916]: ifup: failed to bring up eth0
Sep 19 15:30:59 debian systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
Sep 19 15:30:59 debian systemd[1]: networking.service: Failed with result 'exit-code'.
Sep 19 15:30:59 debian systemd[1]: Failed to start Raise network interfaces.
https://unix.stackexchange.com/question ... ing-failed
Bin mir jetzt aber nicht sicher ob ich es richtig verstanden habe, und will ungern alles noch schlimmer machen.
Es ist dort auch die Rede von eth0:
From your systemctl status networking.service output, it looks like something is still trying to find eth0 and would need to be updated to use the actual name of your NIC. It might be some script in /etc/network/if-*.d/ directories. I'd suggest running a grep -r eth0 /etc |less and checking all the places it finds.
User telcoM's suggestion of grepping for eth0 helped me resolve this issue when I encountered it. In file /etc/network/interfaces.d/setup, I found two references to eth0 and changed them to enp0s3, which is the Ethernet interface on the system I'm working with (Debian 10.0 running on VirtualBox's Intel PRO/1000 MT Desktop adapter.)
The contents of this file now look like this:
Code: Alles auswählen
auto lo iface lo inet loopback # auto eth0 # auto eth0 inet dhcp auto enp0s3 iface enp0s3 inet dhcp
Wenn ich das mal versuche nachzumachen, komme ich auf folgendes:
Code: Alles auswählen
root@debian:~# grep -r eth0 /etc |less
/etc/avahi/avahi-daemon.conf:#allow-interfaces=eth0
/etc/initramfs-tools/initramfs.conf:# Specify a specific network interface, like eth0
/etc/network/interfaces.d/setup:auto eth0
/etc/network/interfaces.d/setup:iface eth0 inet dhcp
/etc/dhcp/dhclient.conf:# interface "eth0";
/etc/dhcp/dhclient.conf:# interface "eth0";
~
(END)
Würde mich über Unterstützung sehr freuen!