diff --git a/docs/alpine-desktop-setup/installation.md b/docs/alpine-desktop-setup/installation.md index 9fea3f0..fb2d232 100644 --- a/docs/alpine-desktop-setup/installation.md +++ b/docs/alpine-desktop-setup/installation.md @@ -3,7 +3,7 @@ To install the Alpine Linux distribution on the system, the encrypted partition and the efi partition have to be mounted to the main system. ``` -# mount /dev/vg1/aroot /mnt -t ext4 +# mount /dev/vg1/root{n} /mnt -t ext4 # mkdir /mnt/boot/efi -p # mount /dev/ /mnt/boot/efi -t vfat ``` @@ -22,8 +22,8 @@ Now the other directories are going to be mounted so that it's possible to chroo # for i in dev proc sys run; do > mount --rbind --make-rslave /$i /mnt/$i > done -# mount /dev/vg1/avar /mnt/var -# mount /dev/vg1/atmp /mnt/tmp +# mount /dev/vg1/var{n} /mnt/var +# mount /dev/vg1/tmp{n} /mnt/tmp # chroot /mnt ```