当前位置:   article > 正文

linux下文件系统变成只读的解决方法_linux volume只读

linux volume只读

linux下文件系统变成只读的解决方法

- 分区挂载失败的解决方法

在使用双系统或者虚拟机的时候,需要挂载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

杀死进程重新挂载

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/263957?site
推荐阅读
相关标签
  

闽ICP备14008679号