Problem scenario
You cannot make changes to an /etc/fstab file. It is read only. What should you do?
Possible Solution #1
If your /etc/fstab file is messed up (through manual changes to it), and your system boots it as read only, can you run a command like this?
sudo mount -o remount,rw /dev/mapper/foobar /directory/to/be/mounted
If you run “sudo cat /etc/fstab” you will see lines like this:
/dev/mapper/foobar / ext4 defaults 1 1
(If you saw the above,
…
Continue reading “How Do You Make Changes to an /etc/fstab File when It Is Read Only?”