So i had a perfectly good system running with 22.04 LTS. was asked to upgrade to 24.04 LTS which i did 2 days ago. Now my internal storage drive which is formatted to NTFS and as all my storage on it wont mount ? WTF people say they choose Ubuntu because windows is such a pain.
I have tried through terminal some commands to try and get it to mount but no good. Can anyone offer an easy solution or do i have to go back to windows to clear up this mess.
- 59
5 Answers
The bug is discribed here: https://bugs.launchpad.net/ubuntu/+source/ntfs-3g/+bug/2062972
The answer of morbius1 (post #18) does the job:
echo 'blacklist ntfs3' | sudo tee /etc/modprobe.d/disable-ntfs3.conf
- 111
-
1
-
I'm not understanding something. Clearly the new ntfs3 is buggy, and the old ntfs-3g is not. Why doesn't Ubuntu fix this? Why is it up to users to find this (or similar) posts and run the work-around ourselves? – Mike Maxwell Sep 24 '25 at 18:56
I had the problem that - after a fresh install of Ubuntu 24.04.01 - an external hard drive formatted with NTFS wouldn't mount. I tried plugging it into Windows 10 (drive not recognised) and Lubuntu 24.04 (gave same report as Ubuntu about the FS). I took the plunge and used the Discs utility in Ubuntu to 'Repair Filesystem' (it is an option that appears if you click on the obvious wheel icon in Discs). It worked! Immediate access to external hard drive and precious files.
Apparently, ntfs-3g is replaced in favor of ntfs in Ubuntu 24.04.
In your fstab, something like this should work:
UUID="333ABC2478DB2FF5" /media/user/wind ntfs discard,rw,nodev,noexec,auto,nouser,async,locale=en_US.utf8,uid=1000,gid=1000,umask=0002 0 0
Adjust with your actual disk uuid, mount path and other optional values.
- 341
Me, I deleted U24.1, U24.04 and wait for a better release Staying with U22; no problems reading NTFS drives
- 47
Just a note re my experiences with this bug with NTFS support of ubuntu. Sometime between Aug-2024 and Apr-2025 first manifested, on both 22.04x and new 25.04. Appears on BOTH ntfs3 and -3g - same bug on both so regardless of fuse or in-kernel. No trouble appeared early in the 24.04 life, I was using ntfs on removeable usb spinners and ssds, all fine. After write to drive from linux, it is permanently corrupted and will not mount, but is quickly fixed by mounting into W11, which complains, then do the scan and chkdsk /f which fixes it. No data loss. OK workaround but ugh. My permanent fix is stop using ntfs on linux, only exfat on removeables and ext4 on internals.
- 199
/etc/fstab. You mentioned Windows - is this a dual-boot system? If so, did Fast Boot get re-enabled? – ajgringo619 Sep 16 '24 at 21:30cat /etc/fstab. – ajgringo619 Sep 17 '24 at 01:22