Skip to content

Instantly share code, notes, and snippets.

@KurtJacobson
Last active March 15, 2019 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KurtJacobson/91f73f547440337d65e6cd48d86b139b to your computer and use it in GitHub Desktop.
Save KurtJacobson/91f73f547440337d65e6cd48d86b139b to your computer and use it in GitHub Desktop.
Fix Debian 9 (Stretch) "A start job is ruining for Raise network interfaces" hang at boot

This fixes A start job is ruining for Raise network interfaces hang

sudo nano /etc/network/interfaces.d/setup

change:

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

to:

auto lo
iface lo inet loopback

allow-hotplug eth0
iface eth0 inet dhcp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment