From 506e3118fc59e8e5d36252c6463aef30f59d94f5 Mon Sep 17 00:00:00 2001 From: proledatarian Date: Wed, 19 Jan 2022 19:35:46 +0000 Subject: [PATCH] Update README.md --- README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 840a09b..e717d68 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,9 @@ $ reflector --verbose --latest 10 --country Germany --age 24 --protocol https - **The package base-devel is not necessary but recommended.** $ pacstrap /mnt base base-devel linux linux-firmware networkmanager nano sudo lvm2 +**Optional: install all basic packages for KDE Plasma:** + $ pacstrap /mnt base base-devel linux linux-zen linux-firmware networkmanager nano sudo lvm2 sddm sddm-kcm plasma-desktop konsole firefox + **Generate fstab.** $ genfstab -Up /mnt > /mnt/etc/fstab **-U = Use UUID for source identifiers (shortcut for -t LABEL).** @@ -100,11 +103,14 @@ $ nano /etc/mkinitcpio.conf **HOOKS=(base udev autodetect modconf block keyboard keymap encrypt lvm2 filesystems fsck shutdown)** **Create mkinitcpio.** -$ mkinitcpio -p linux +$ mkinitcpio -p linux-zen **Start NetworkManager for automatic network access on next boot.** $ systemctl enable NetworkManager +**Enable SDDM to start on next boot.** +$ systemctl enable sddm + **Set a root-password.** $ passwd @@ -117,8 +123,8 @@ $ nano /bootloader/entries/arch.conf **Add the following:** ``` title Arch Linux -linux /vmlinuz-linux -initrd /initramfs-linux.img +linux /vmlinuz-linux-zen +initrd /initramfs-linux-zen.img options cryptdevice=/dev/sda2:main root=/dev/mapper/main-root rw lang=de init=/usr/lib/systemd/systemd locale=de_DE.UTF-8 ``` @@ -143,6 +149,10 @@ timeout 1 default arch.conf ``` +**Set your keyboard to your language.** +$ localectl --no-convert set-keymap de-latin1-nodeadkeys +$ localectl --no-convert set-x11-keymap de pc105 deadgraveacute + **Exit and reboot.** $ exit $ umount /mnt/boot