Update README.md

This commit is contained in:
proledatarian 2022-01-19 19:35:46 +00:00
parent a933a2f0a8
commit 506e3118fc
1 changed files with 13 additions and 3 deletions

View File

@ -75,6 +75,9 @@ $ reflector --verbose --latest 10 --country Germany --age 24 --protocol https -
**The package base-devel is not necessary but recommended.** **The package base-devel is not necessary but recommended.**
$ pacstrap /mnt base base-devel linux linux-firmware networkmanager nano sudo lvm2 $ 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.** **Generate fstab.**
$ genfstab -Up /mnt > /mnt/etc/fstab $ genfstab -Up /mnt > /mnt/etc/fstab
**-U = Use UUID for source identifiers (shortcut for -t LABEL).** **-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)** **HOOKS=(base udev autodetect modconf block keyboard keymap encrypt lvm2 filesystems fsck shutdown)**
**Create mkinitcpio.** **Create mkinitcpio.**
$ mkinitcpio -p linux $ mkinitcpio -p linux-zen
**Start NetworkManager for automatic network access on next boot.** **Start NetworkManager for automatic network access on next boot.**
$ systemctl enable NetworkManager $ systemctl enable NetworkManager
**Enable SDDM to start on next boot.**
$ systemctl enable sddm
**Set a root-password.** **Set a root-password.**
$ passwd $ passwd
@ -117,8 +123,8 @@ $ nano /bootloader/entries/arch.conf
**Add the following:** **Add the following:**
``` ```
title Arch Linux title Arch Linux
linux /vmlinuz-linux linux /vmlinuz-linux-zen
initrd /initramfs-linux.img 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 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 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 and reboot.**
$ exit $ exit
$ umount /mnt/boot $ umount /mnt/boot