FS#72657 - [linux] enable NTFS driver and RW ability

Attached to Project: Arch Linux
Opened by John (graysky) - Sunday, 07 November 2021, 20:29 GMT
Last edited by Jonas Witschel (diabonas) - Wednesday, 10 November 2021, 18:16 GMT
Task Type Feature Request
Category Packages: Testing
Status Closed
Assigned To No-one
Architecture All
Severity Low
Priority Normal
Reported Version
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 0
Private No

Details

5.15 introduces kernel space NTFS[1] so let's enable RW ability of the module. Need to take the current config and run:

scripts/config --module CONFIG_NTFS_FS
scripts/config --enable CONFIG_NTFS_RW
This task depends upon

Closed by  Jonas Witschel (diabonas)
Wednesday, 10 November 2021, 18:16 GMT
Reason for closing:  Not a bug
Additional comments about closing:  works as-is
Comment by loqs (loqs) - Sunday, 07 November 2021, 20:36 GMT
It is enabled:
CONFIG_NTFS3_FS=m
# CONFIG_NTFS3_64BIT_CLUSTER is not set
CONFIG_NTFS3_LZX_XPRESS=y
CONFIG_NTFS3_FS_POSIX_ACL=

The disabled CONFIG_NTFS_FS and CONFIG_NTFS_RW is for the old NTFS implementation.

See also https://bbs.archlinux.org/viewtopic.php?id=270963
Comment by John (graysky) - Sunday, 07 November 2021, 20:50 GMT
Thanks for clarifying and providing the link, loqs. Caught me as I did not define the type when mounting:

# mount /dev/sdb4 /mnt
mount: /mnt: unknown filesystem type 'ntfs'.

But this works:
# mount -t ntfs3 /dev/sdb4 /mnt

Loading...