From 9fdb3d979f0b0c4e75a09c91115ed16a27c3c128 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 10 Aug 2023 20:02:38 +0200 Subject: [PATCH] Force the mounting of NTFS drives --- profiles/DerGeret/Arch/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/DerGeret/Arch/setup.sh b/profiles/DerGeret/Arch/setup.sh index eb8cdee7..1a1d9d63 100755 --- a/profiles/DerGeret/Arch/setup.sh +++ b/profiles/DerGeret/Arch/setup.sh @@ -4,7 +4,7 @@ pushd "${BASH_SOURCE%/*}" > /dev/null; extraMounts() { disks=($(bash -c "echo $ARCH_DISK*")); - mount --mkdir -t ntfs3 "${disks[-1]}" "$ARCH_MOUNT_ROOT/mnt/win"; + mount --mkdir -o force -t ntfs3 "${disks[-1]}" "$ARCH_MOUNT_ROOT/mnt/win"; } PARTITION_SCRIPT="$(realpath ./partition.sh)" \