From 443b7b3fb8592db255d3c206164c70c0cda14eb1 Mon Sep 17 00:00:00 2001 From: DoTheEvolution Date: Tue, 19 May 2020 20:50:16 +0200 Subject: [PATCH] update --- arch_linux_host_install/readme.md | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/arch_linux_host_install/readme.md b/arch_linux_host_install/readme.md index 74bd8e8..d694882 100644 --- a/arch_linux_host_install/readme.md +++ b/arch_linux_host_install/readme.md @@ -53,7 +53,7 @@ So if theres boot menu option choose non-uefi. * choose geographicly close mirror, ctrl+k deletes a line in nano
`nano /etc/pacman.d/mirrorlist` * install the base system
- `pacstrap /mnt base linux linux-firmware base-devel grub dhcpcd nano` + `pacstrap /mnt base linux linux-firmware base-devel grub nano` * gnerate fstab
`genfstab -U /mnt > /mnt/etc/fstab` * chroot in to the new system
@@ -80,8 +80,24 @@ So if theres boot menu option choose non-uefi. *%wheel ALL=(ALL) ALL* * check the network interface name
`ip link` -* enable aquiring dynamic IP
- `systemctl enable --now dhcpcd@enp0s25` +* set static IP systemd-networkd
+ + `nano /etc/systemd/network/20-wired.network` + + ``` + [Match] + Name=enp0s25 + + [Network] + Address=10.0.19.2/24 + Gateway=10.0.19.1 + DNS=8.8.8.8 + DNS=1.1.1.1 + ``` + + `systemctl enable --now systemd-networkd`
+ `systemctl enable --now systemd-resolved` + * uncomment desidred locales in locale.gen
`nano /etc/locale.gen`
* generate new locales and set one system wide