关于ubuntu挂载ntfs无法进行读写的解决方法

1.将已经挂载的磁盘进行修复

sudo ntfsfix 分区名称
例如:
sudo ntfsfix /dev/sda2

出现如下则成功

Mounting volume... OK
Processing of $MFT and $MFTMirr completed successfully.
Checking the alternate boot sector... OK
NTFS volume version is 3.1.
NTFS partition /dev/sda2 was processed successfully.

2.先卸载以经挂载的磁盘

umount /home/mikey/Mikey

3.如果遇到错误

Mount is denied because the NTFS volume is already exclusively opened.
The volume may be already mounted, or another software may use it which
could be identified for example by the help of the 'fuser' command.

3.再从新进行挂载

mount -o rw /dev/sda2 /home/mikey/Mikey

4.成功

猜你喜欢

转载自www.cnblogs.com/biaogejiushibiao/p/10261226.html