Linux学习之错误与解决记录(持续更新)
文件移动或者复制到另外一个路径下报错Read-only file systemCould not create NetworkPortal in configFS.iSCSI错误
·
1.想要将一个文件移动或者复制到另外一个路径下报错:
[root@localhost by-label]# mv testfile /mnt/
mv: inter-device move failed: ‘testfile’ to ‘/mnt/testfile’; unable to remove target: Read-only file system
[root@localhost by-label]#
错误真实再现
分析:
这种情况通常都是由于系统发现磁盘硬件故障或文件系统中文件被损坏之后而采取的保护机制导致的。为了保护数据不破坏分区中已有内容,Linux在挂载文件系统时就只用read-only只读方式加载了。然后要是想再对这个设备进行操作就会提示上边的错误。
解决
卸载你挂载的设备或者镜像然后再进行操作
umount /mnt
2.在利用targetcli进行iSCSI配置进行到端口添加时出现下面错误:
/> /iscsi/iqn.2017-08.com.example.issic-server/tpg1/portals create 172.25.254.136
Using default IP port 3260
Could not create NetworkPortal in configFS.
分析:
因为默认是监听0.0.0.0,所有地址,如果不删除默认而去创建时就会出现上面的错误
解决:
/> /iscsi/iqn.2017-08.com.example.issic-server/tpg1/portals delete 0.0.0.0 3260
#首先删除默认,然后再去添加
/> /iscsi/iqn.2017-08.com.example.issic-server/tpg1/portals portals create 172.25.254.136:3260
Using default IP port 3260
Created network portal 172.25.254.136:3260.
更多推荐
已为社区贡献2条内容
所有评论(0)