How to remount drive as read/write in Linux
We can remount the mounted drives as read/write using the following command.
#mount -o remount,rw device-name mount-point
Where device-name and mount-point need to be replaced with corresponding values.
Please note to run this command as root.
That's all…