From 9a161bfe0b3235db425ac053dc112fe3bc9ceca6 Mon Sep 17 00:00:00 2001 From: TommyTran732 <57488583+tommytran732@users.noreply.github.com> Date: Sun, 11 Apr 2021 03:30:26 -0400 Subject: [PATCH] Remove fmask and dmask settings on @boot Turns out BTRFS has an issue where only the mount options for the first subvolume matters :/ --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 02f333c..8be5eb4 100644 --- a/install.sh +++ b/install.sh @@ -101,8 +101,8 @@ umount /mnt echo "Mounting the newly created subvolumes." mount -o ssd,noatime,space_cache,compress=zstd,subvol=@ $BTRFS /mnt mkdir -p /mnt/{home,.snapshots,/var/log,swap,boot,/boot/efi} -mount -o ssd,noatime,space_cache.fmask=0022,dmask=0022,compress=zstd,subvol=@boot $BTRFS /mnt/boot -mount -o ssd,noatime,space_cache.compress=zstd,subvol=@home $BTRFS /mnt/home +mount -o ssd,noatime,space_cache,compress=zstd,subvol=@boot $BTRFS /mnt/boot +mount -o ssd,noatime,space_cache,compress=zstd,subvol=@home $BTRFS /mnt/home mount -o ssd,noatime,space_cache,compress=zstd,subvol=@snapshots $BTRFS /mnt/.snapshots mount -o ssd,noatime,space_cache,nodatacow,subvol=@var_log $BTRFS /mnt/var/log mount -o nodatacow,subvol=@swap $BTRFS /mnt/swap