From 60913233f5194146b940809866268ea428e725c4 Mon Sep 17 00:00:00 2001 From: cronyakatsuki Date: Thu, 13 Oct 2022 18:33:16 +0200 Subject: [PATCH] Fix mount options. --- arch_install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch_install.sh b/arch_install.sh index 3630137..00df1ba 100755 --- a/arch_install.sh +++ b/arch_install.sh @@ -60,16 +60,16 @@ umount -R /mnt echo "Mounting the system" echo "Mounting root btrs subvolume" -mount $partition -o subvol @ /mnt +mount $partition -o subvol=/@ /mnt echo "Mounting home btrs subvolume" mkdir -p /mnt/home -mount $partition -o subvol @home /mnt/home +mount $partition -o subvol=/@home /mnt/home echo "Mounting cache btrs subvolume" mkdir -p /mnt/var/cache -mount $partition -o subvol @cache /mnt/var/cache +mount $partition -o subvol=/@cache /mnt/var/cache echo "Mounting log btrs subvolume" mkdir -p /mnt/var/log -mount $partition -o subvol @log /mnt/var/log +mount $partition -o subvol=/@log /mnt/var/log if [[ ! -z ${efipartition+x} ]]; then echo "Mounting efi partition"