赞
踩
在使用双系统或者虚拟机的时候,需要挂载window下的E、D、F等盘,可能会出现挂在失败,提示“Please resume and shutdown Windows fully (no hibernation or fast restarting), or mount the volume read-only with the *ro* mount option.”
该问题是由于window的快速启动造成的,进入window关闭快速启动即可,方法可自行百度。也可以使用ntfsfinx工具修复:
sudo ntfsfix /待修复的分区
,没有ntfsfix可以通过 sudo apt-get install ntfs-3g
安装
通过mount查看只读的分区 :
mount
显示
/dev/sdb3 on /media/zhangzhihao/F type fuseblk
(ro,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)
ro表示只读,分区为/dev/sdb3 ,首先卸载分区,使用命令
umount /dev/sdb3
然后重新挂载分区
mount /dev/sdb3 /你想挂载到的目录
如果提示
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.
执行
fuser -m /dev/sdb3
会显示当前占用该分区的进程id,执行
kill 显示的进程id
杀死进程重新挂载
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。