Update README.md
This commit is contained in:
parent
a933a2f0a8
commit
506e3118fc
16
README.md
16
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
|
||||
|
|
Loading…
Reference in New Issue