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

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

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

出现如下则成功

Mounting volume... OKProcessing of $MFT and $MFTMirr completed successfully.Checking the alternate boot sector... OKNTFS 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.成功

 

相关文章