From 188d32a85de3414875c405041db28f42b2d46220 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Zurcher?= Date: Thu, 14 Oct 2021 17:17:13 +0200 Subject: arch-setup-0.sh : fix DEV in mount --- arch-install/arch-setup-0.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch-install/arch-setup-0.sh b/arch-install/arch-setup-0.sh index 42c9345..8b1e314 100755 --- a/arch-install/arch-setup-0.sh +++ b/arch-install/arch-setup-0.sh @@ -38,11 +38,11 @@ mkfs.ext4 -L home ${DEV}3 || exit 1 parted $DEV set 1 bios_grub on say "MOUNT" -mount /dev/${DEV}2 /mnt +mount ${DEV}2 /mnt mkdir /mnt/boot -mount /dev/${DEV}1 /mnt/boot +mount ${DEV}1 /mnt/boot mkdir /mnt/home -mount /dev/${DEV}3 /mnt/home +mount ${DEV}3 /mnt/home say "SWAPFS" dd if=/dev/zero of=/mnt/swapfile bs=1M count=512 || exit 1 -- cgit v1.1-2-g2b99