4

I have a new Arch Linux installation but trouble getting network. When I boot up interface eth0 is DOWN by default so run ip link set eth0 up. The problem is when I trying to run systemctl enable dhcpcd it says dhcpcd.service does not exist (also tried dhclient). Not sure where to go from there

enter image description here

Wilhelmina Lohan
  • 141
  • 1
  • 1
  • 3
  • 1
    Probably because you didn't specify either of them when you pacstrap. Either use systemd-networkd (and -resolved), or boot back the installation medium and mount and arch-chroot and pacman to install them. – Tom Yan Jul 24 '21 at 07:50
  • 1
    Does `systemctl status systemd-networkd` is running? – KamilCuk Jul 24 '21 at 10:09

1 Answers1

3

I think you don't have dhcpcd isntalled.Try pacman -S dhcpcd. This will install dhcpcd and the service

Akshat Vats
  • 439
  • 2
  • 8
  • 21