diff --git a/docs/help/LOOT-FAQs.html b/docs/help/LOOT-FAQs.html index 1ad629d..0897847 100644 --- a/docs/help/LOOT-FAQs.html +++ b/docs/help/LOOT-FAQs.html @@ -13,6 +13,7 @@ title: FAQs
LOOTDebugLog.txt. Is this a problem?LOOTDebugLog.txt. Is this a problem?If you are running LOOT on a Steam Deck, the easiest way is to use Steam to move the game in question to a microSD card that has been formatted by Steam (as described on this page).
+ +Otherwise, assuming you are using Linux, you can manually create a partition or disk image and format it with a case-insensitive filesystem, mount the filesystem, and then move the game to that filesystem. Case-insensitive filesystems include ext4 (with the casefold option), F2FS (with the casefold option), exFAT and NTFS. Here is an example of the steps needed to prepare a case-insensitive ext4 disk image before a game can be moved to it:
+ +IMAGE_LOCATION=~/Downloads/casefolded.img
+MOUNT_POINT=~/Downloads/casefolded
+
+truncate --size=15G "$IMAGE_LOCATION"
+mkfs.ext4 -O casefold "$IMAGE_LOCATION"
+echo "$IMAGE_LOCATION $MOUNT_POINT ext4 defaults 0 0" | sudo tee -a /etc/fstab > /dev/null
+
+mkdir -p "$MOUNT_POINT"
+
+sudo mount "$IMAGE_LOCATION" "$MOUNT_POINT"
+sudo chown "$USER" "$MOUNT_POINT"
+
+mkdir "$MOUNT_POINT/SteamLibrary"
+chattr +F "$MOUNT_POINT/SteamLibrary"
+