For the complete documentation index, see llms.txt. This page is also available as Markdown.

Network

Arch network tips and tricks

Quickly connect to internet

dhclient

Connect to internet on boot

systemctl enable systemd-networkd.service

List your interfaces.

ip addr

Create a config file.

nano /etc/systemd/network/20-wired.network

With the following content (example).

[Match]
Name=enp1s0

[Network]
DHCP=ipv4

Reboot.

reboot

References

https://wiki.archlinux.org/index.php/Systemd-networkd

Last updated