From 14fd1041555b693a76b4824f1e8db04f2e6f5a25 Mon Sep 17 00:00:00 2001 From: Tastatur Date: Wed, 27 Dec 2023 13:55:03 +0100 Subject: [PATCH] Replace a few names with new ones --- docs/alpine-desktop-setup/installation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ```