Replace a few names with new ones

This commit is contained in:
Tastatur 2023-12-27 13:55:03 +01:00
parent 2df1d4f9c8
commit 14fd104155

View file

@ -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. 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 # mkdir /mnt/boot/efi -p
# mount /dev/<disk1> /mnt/boot/efi -t vfat # mount /dev/<disk1> /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 # for i in dev proc sys run; do
> mount --rbind --make-rslave /$i /mnt/$i > mount --rbind --make-rslave /$i /mnt/$i
> done > done
# mount /dev/vg1/avar /mnt/var # mount /dev/vg1/var{n} /mnt/var
# mount /dev/vg1/atmp /mnt/tmp # mount /dev/vg1/tmp{n} /mnt/tmp
# chroot /mnt # chroot /mnt
``` ```