ubuntu系统访问win10磁盘,出现如下错误:
图片转:http://blog.csdn.net/u010426270/article/details/52420231
可能原因:上一次使用win10后使电脑睡眠,没有完全关机,这次开机直接进入ubuntu系统,访问win10磁盘报错。
解决方法:
1. 在终端输入如下命令,查看分区挂载情况
[email protected]:~$ sudo fdisk -l
[sudo] password for gjh:
Disk /dev/sda: 2000.4 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders, total 3907029168 sectors
Units = 扇区 of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0xd92b2746
设备 启动 起点 终点 块数 Id 系统
/dev/sda1 * 2048 209719295 104858624 7 HPFS/NTFS/exFAT
/dev/sda2 209721342 3897235455 1843757057 f W95 扩展 (LBA)
分区 2 未起始于物理扇区边界。
/dev/sda3 3897235456 3906025471 4395008 82 Linux 交换 / Solaris
/dev/sda4 3906025472 3907028991 501760 83 Linux
/dev/sda5 209721344 1134567423 462423040 7 HPFS/NTFS/exFAT
/dev/sda6 1134569472 2059415551 462423040 7 HPFS/NTFS/exFAT
/dev/sda7 2059417600 2984263679 462423040 7 HPFS/NTFS/exFAT
/dev/sda8 2984265728 3697313791 356524032 7 HPFS/NTFS/exFAT
/dev/sda9 3697315840 3727312895 14998528 83 Linux
/dev/sda10 3727314944 3867938815 70311936 83 Linux
/dev/sda11 3867940864 3897235455 14647296 83 Linux
2. 修复挂载错误的相应的分区,如提示中的/dev/sda5,输入:
[email protected]:~$ sudo ntfsfix /dev/sda5
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/sda5 was processed successfully.
[email protected]:~$ sudo ntfsfix /dev/sda6
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/sda6 was processed successfully.
[email protected]:~$ sudo ntfsfix /dev/sda7
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/sda7 was processed successfully.
[email protected]:~$ sudo ntfsfix /dev/sda8
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/sda8 was processed successfully.