The rw tag has no wiki summary.
1
vote
1answer
28 views
Readonly in mounted partition's root
/etc/fstab
UUID=<someuuid> /mnt/data ext4 defaults,relatime,data=ordered 0 2
and
/mnt$ ll
drwxr-xr-x 2 manuel users 4096 15. Apr 18:25 data
/mnt$ mount -a
/mnt$ ll
drwxr-xr-x 4 root root ...
2
votes
1answer
67 views
GNU/Linux: overlay block device / stackable block device
GNU/Linux has union mount that overlays dirs. So you can mount a writeable dir on top of a read-only dir. When the writeable dir is unmounted the read-only dir is untouched.
I am looking for the same ...
