Skip to content

Commit

Permalink
v6.32 (#3653)
Browse files Browse the repository at this point in the history
+ DietPi-Drive_Manager | For NTFS mounts, add "big_files" option by default which prevents splitting write buffers into 4k chunks. This is generally seen as stable and is the default in new libfuse3: https://unix.stackexchange.com/a/544864
  • Loading branch information
MichaIng committed Jul 6, 2020
1 parent 2712e90 commit 78dc1bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dietpi/dietpi-drive_manager
Expand Up @@ -235,10 +235,10 @@ $swap_mounts
(( ${aDRIVE_ISREADONLY_CURRENTLY[$index]} )) && options=',ro'

# Additional FS-specific options
# - NFTS: Enable POSIX permissions
# - NTFS: Enable POSIX permissions and prevent splitting write buffers into 4k chunks: https://manpages.debian.org/ntfs-3g#OPTIONS
if [[ ${aDRIVE_FSTYPE[$index]} == 'ntfs' ]]; then

options+=',permissions'
options+=',permissions,big_files'

fi

Expand Down

2 comments on commit 78dc1bb

@balexandrov
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MichaIng big_writes, not big_files ;)

@MichaIng
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed: a03d42f

Please sign in to comment.