Ubuntu 挂载Windows ntfs分区报错的解决方法

目录

一、错误

二、解决方法


一、错误

1.博主在挂载windows系统D盘时报错,/dev/sda1指的是D盘,挂载的目录是/mnt/D

sudo mount -t ntfs /dev/sda1 /mnt/D -o iocharset=utf8,umask=0

错误为

The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sda1': 不允许的操作
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.

二、解决方法

1.终端输入如下指令修复

sudo ntfsfix /dev/sda1

2.如下显示

Mounting volume... The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
FAILED
Attempting to correct errors... 
Processing $MFT and $MFTMirr...
Reading $MFT... OK
Reading $MFTMirr... OK
Comparing $MFTMirr to $MFT... OK
Processing of $MFT and $MFTMirr completed successfully.
Setting required flags on partition... OK
Going to empty the journal ($LogFile)... OK
Checking the alternate boot sector... OK
NTFS volume version is 3.1.
NTFS partition /dev/sda1 was processed successfully.

3.再次运行挂载命令则可以成功挂载!!

sudo mount -t ntfs /dev/sda1 /mnt/D -o iocharset=utf8,umask=0

发布了129 篇原创文章 · 获赞 1105 · 访问量 169万+

猜你喜欢

转载自blog.csdn.net/qq_36556893/article/details/90296868
今日推荐