- Proceed with login to repair filesystem (provide root password)
Next mount your root filesystem
- mount -n -o remount,rw /dev/hdxx (where hdxx or sdxx is your root partition)
Remove the /dev/null entry
- rm -rf /dev/null
Since we've already remove the /dev/null, we have to create a new writeable entry
- mknod -m 666 /dev/null c 1 3
Reboot the system using shutdown -r now or shutdown -h now, the filesystem should be correctly mounted the next round of booting.
|
|