Update install.md
This commit is contained in:
parent
89955e3b6a
commit
409b0af8fb
12
install.md
12
install.md
|
@ -37,6 +37,7 @@ $ y
|
|||
|
||||
**Encrypt primary partition.**
|
||||
$ cryptsetup -c aes-xts-plain -y -s 512 luksFormat /dev/sda2
|
||||
**Confirm by tryping "YES".**
|
||||
$ YES
|
||||
|
||||
**Open encrypted partition and mount to container "lvm".**
|
||||
|
@ -98,6 +99,7 @@ _Uncomment your language, e.g. de_DE.UTF-8 UTF-8 (and en_US.UTF-8)._
|
|||
|
||||
**Generate the locale.**
|
||||
$ locale-gen
|
||||
_The uncommented languages should appear followed by "done"._
|
||||
|
||||
**Add necessary HOOKS and MODULES.**
|
||||
$ nano /etc/mkinitcpio.conf
|
||||
|
@ -110,11 +112,8 @@ HOOKS=(base udev autodetect modconf block keyboard keymap encrypt lvm2 filesyste
|
|||
**Create mkinitcpio.**
|
||||
$ 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
|
||||
**Enable NetworkManager and SDDM to start on next boot.**
|
||||
$ systemctl enable NetworkManager sddm
|
||||
|
||||
**Set a root-password.**
|
||||
$ passwd
|
||||
|
@ -142,6 +141,8 @@ $ nano /boot/loader/entries/arch-fallback.conf
|
|||
**Change it to the following:**
|
||||
```
|
||||
title Arch Linux Fallback
|
||||
linux /vmlinuz-linux
|
||||
initrd /initramfs-linux.img
|
||||
initrd /initramfs-linux-fallback.img
|
||||
```
|
||||
|
||||
|
@ -156,7 +157,6 @@ 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
|
||||
|
||||
**Create a user with a /home-directory.**
|
||||
$ useradd -m $myusername
|
||||
|
|
Loading…
Reference in New Issue