We may some time required to boot in single user mode in linux to fix some issues with the linux. Some times when we boot into single user mode in linux we might see the root volume(/) as read only and we can edit the config files inside root volume due to this. Solution to this is mounting the root volume (/) in read/write mode using the following command in single user mode.
# mount -L / / -t ext3 -o remount,rw
# mount -L / / -t ext3 -o remount,rw
Comments
Post a Comment