从磁盘错误以只读方式装入ext3 fs readwrite后,如何重新装入它?
当SAN中发生问题时,这是一个相对常见的问题,因为ext3可以检测磁盘写入错误并以只读方式重新安装文件系统。一切都很好,只有在SAN修复后,我才能弄清楚如何在不重新引导的情况下以读写方式重新安装文件系统。 看哪: [root@localhost ~]# multipath -ll mpath0 (36001f93000a310000299000200000000) dm-2 XIOTECH,ISE1400 [size=1.1T][features=1 queue_if_no_path][hwhandler=0][rw] \_ round-robin 0 [prio=2][active] \_ 1:0:0:1 sdb 8:16 [active][ready] \_ 2:0:0:1 sdc 8:32 [active][ready] [root@localhost ~]# mount /dev/mapper/mpath0 /mnt/foo [root@localhost ~]# touch /mnt/foo/blah 很好,现在我将LUN从其下方拉出。 [root@localhost ~]# touch /mnt/foo/blah [root@localhost ~]# touch /mnt/foo/blah touch: cannot touch `/mnt/foo/blah': Read-only file …