系统相关
首页 > 系统相关> > linux系统提示只读文件系统,无法创建文件

linux系统提示只读文件系统,无法创建文件

作者:互联网

可能磁盘写保护。

第一步。 df -h 确定文件夹对应的磁盘。

第二步 mount ro为只读,rw为可读可写

可以用mount命令看看ro的分区,如果发现有ro,就重新mount,如:
umount /dev/sda1
mount /dev/sda1 /boot
如果发现有提示“device is busy”。
fuser -m /boot 将会显示使用这个模块的pid
fuser -mk /boot 将会直接kill那个pid
然后重新mount即可。

当然也可以直接remount,命令为
原文链接:https://blog.csdn.net/whf96998/article/details/82184485

标签:只读,pid,mount,sda1,boot,文件系统,fuser,linux,ro
来源: https://blog.csdn.net/weixin_38907330/article/details/121554896