Articles
Linux

Linux: Read-only partition (Solving)

By Lucas
January 6, 2018
1 min min read
Linux: Read-only partition (Solving)

When we start Linux in recovery mode, for example, the root partition will be mounted read-only.

How to remount the root partition in Read / Write mode ?

After booting Linux, run the command below to remount in Read and Write mode:

mount -o remount,rw /

OK, now the root partition has been remounted in read/write mode.

Related Articles