Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
4
rated 0 times [  4] [ 0]  / answers: 1 / hits: 5542  / 2 Years ago, sat, december 4, 2021, 10:58:06

After upgrading some packets (that I don't know what), my ext4 partitions are mounted as read only:



m@mpc ~ $ sudo mount /dev/sda5 /mnt
mount: warning: /mnt seems to be mounted read-only.


My NTFS partitions are mounted as read only too and when I want to use fsck it says:



m@mpc ~ $ sudo fsck /dev/sda5 
[sudo] password for m:
fsck from util-linux 2.20.1
fsck: fsck.ntfs: not found
fsck: error 2 while executing fsck.ntfs for /dev/sda5


How can I solve this problem?



Edit: ext partitions are now ok, but still problem with NTFS.


More From » ntfs

 Answers
5

From the output of fsck, I can see you are using the Kernel NTFS driver which is a read-only driver.



You need to install (perhaps reinstall) the FUSE NTFS driver called NTFS 3G. The following command should solve your problem:



sudo apt-get install ntfs-3g


After that, either reboot or unmount and remount your NTFS partition. It should be mounted as read write. If it is not the case try forcing the type of file system with the following command:



sudo mount -t ntfs-3g /dev/sda5 /mnt


NOTE: AFAIK there are no fsck tool for NTFS partitions on Linux.


[#32316] Monday, December 6, 2021, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
rstride

Total Points: 305
Total Questions: 112
Total Answers: 118

Location: Mali
Member since Sat, Dec 26, 2020
3 Years ago
;