问题表现:
[[email protected] Desktop]#
[[email protected] Desktop]# fdisk -l
………………
/dev/sda5 58744 66577 62914560 7 HPFS/NTFS
/dev/sda6 78326 91202 103425024 7 HPFS/NTFS
…………
[[email protected] Desktop]# mount -t ntfs-3g /dev/sda6 /mnt
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sda6': Operation not permitted
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.
[[email protected] Desktop]#
问题分析:
微软为Windows 8加入了快速启动功能,这样当你在Windows 8中关闭计算机时,默认情况下会执行混合关机。混合关机就是Windows 8的启动速度会比Windows 7及以前版本的Windows快很多。
不同于冷启动,Windows 8会将需要加载的系统内核和驱动程序保存到磁盘休眠文件,启动Windows 8时自动从休眠文件加载,使得启动速度要快很多。
在之前版本的Windows中,休眠文件包括内核、驱动程序和应用数据。而在Windows 8中,休眠文件更小,加载更快。
Windows 8默认开启了快速启动功能,如需查看该功能是否开启,可执行下面的步骤。
在控制面板中,打开电源选项,找到并点击左侧的选择电源按钮的功能,
然后向下滚动窗口,可看到关机设置中的启用快速启动,
如果你并未在关机设置中找到该选项,表明休眠并未启用。要启用Windows 8的休眠功能,以管理员身份打开命令提示符并输入
powercfg /hibernate on
那如何在Windows 8中实现完全关机呢?有下面几种方法:
1、禁用Windows 8的快速启动功能;
2、用重启替代关机;
3、通过命令关闭计算机,如shutdown /s /full / t 0
当window使用了快速重启的功能的时候,可能会在 Win8 下次启动时清空在其他系统下往 NTFS 分区写入的文件。为了阻止这种情况发生,Fedora 18 中搭载的 ntfs-3g 在检测到“快速重启”启用时将拒绝挂载 NTFS 分区。所以会出现The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sda6': Operation not permitted
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.
这段文字。
如果想正常挂载NTFS请关闭“快速重启”功能吧。