5月22
今天测试完lvm以后,将/other分区从逻辑卷中移除并重新挂载回去。
但在系统重启后无法启动起来,提示:fsck.ext3:Unable to resolve ' LABEL=/dev/hda2 /other'。
解决方法:
进入单用户模式,分别执行:
[root@CentOS ~]#umount /other
[root@CentOS ~]#e2label /dev/hda2 /other
[root@CentOS ~]#mount LABEL=/dev/hda2 /other
同时确保/etc/fstab文件里有:LABEL=/dev/hda2 /other ext3 defaults 1 2
重启就OK了。
但在系统重启后无法启动起来,提示:fsck.ext3:Unable to resolve ' LABEL=/dev/hda2 /other'。
解决方法:
进入单用户模式,分别执行:
[root@CentOS ~]#umount /other
[root@CentOS ~]#e2label /dev/hda2 /other
[root@CentOS ~]#mount LABEL=/dev/hda2 /other
同时确保/etc/fstab文件里有:LABEL=/dev/hda2 /other ext3 defaults 1 2
重启就OK了。



