3

Every now and then the partition of my Linux installation goes read-only. Since the computer is a laptop, I suppose it's due to some writing error caused by some harsh movement.

Partition was mounted as:

UUID=34h3k4hdf ... /               ext4    errors=remount-ro 0       1

How can I make it rw again without re-booting the system or unmounting and re-mounting the partition?

1 Answers1

5

You should be able to simply use

sudo mount -o remount,rw /
Oliver Salzburg
  • 89,072
  • 65
  • 269
  • 311