Software >> OS >> Unix >> Linux >> RHEL >> How to remount read-only fileystem as read-write

check whether currently the filesystem is mounted read only

# cat /proc/mounts
rootfs / rootfs rw 0 0
/dev/root / ext3 ro,data=ordered 0 0

## remount with read-write

# mount -o remount,rw <filesystem_path>