#!/bin/bash pushd /etc/systemd/network >/dev/null || exit 1 cat > 10-eth-dhcp.network << "EOF" [Match] Name=eth0 [Network] DHCP=ipv4 [DHCP] UseDomains=true EOF popd >/dev/null || exit 1 ln -sfv /run/systemd/resolve/resolv.conf /etc/resolv.conf echo "lfs" > /etc/hostname cat > /etc/hosts << "EOF" # Begin /etc/hosts 127.0.0.1 localhost.localdomain localhost 127.0.1.1 lfs.berzerkula.org lfs 192.168.1.196 lfs.berzerkula.org lfs ::1 localhost ip6-localhost ip6-loopback ff02::1 ip6-allnodes ff02::2 ip6-allrouters # End /etc/hosts EOF