01 November 2010

How to edit /etc/fstab when at Fedora “Repair filesystem”


I created a separate partition while installing the operating system and mounted it on ‘/data’. Fedora installation does not let you go without specifying the mount point while creating partitions as OS installation time so i did using ‘/data’. I did this for both the machines for cluster and when I configured DRBD for this partition, mount point has been changed.

Mistake: I forgot to remove this entry from /etc/fstab file which takes care of all the mount points. During the setup we did ‘REBOOT’ and STUCK!
Now system was unable to boot the system because it was reading /etc/fstab file was unable to find the device for it. This can also happen when you have some external hard-drive attached with your linux system and you remove device but forgot to clean its entry from /etc/fstab file.
Linux gives you a “Repair Filesystem” prompt in this situation and you can enter that by providing the root password. The problem is that on “Repair Filesystem” prompt, linux file system and rest of the file systems are generally not mounted and if mounted then it is “Read-Only” so you can not change files.
Solution:
Use following command to mount the filesystem with writable permission:
Repair filesystem # mount -w -o remount /

1 comment: