diff options
author | Andreas Kling <kling@serenityos.org> | 2020-07-28 19:07:01 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-28 19:07:01 +0200 |
commit | b5633c69d3659689004392ba937b53bd1af81cbc (patch) | |
tree | f99b306a3e5e91cf3b02e95272f160e59351481c /Base/etc | |
parent | c46439f24063a5531f1f7562cf6d733cdbabdb51 (diff) | |
download | serenity-b5633c69d3659689004392ba937b53bd1af81cbc.zip |
Base: Mount /etc as read/write
Let's be reasonable and have a writable /etc by default.
Diffstat (limited to 'Base/etc')
-rw-r--r-- | Base/etc/fstab | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Base/etc/fstab b/Base/etc/fstab index 4d34ba1d0b..5e1598326c 100644 --- a/Base/etc/fstab +++ b/Base/etc/fstab @@ -4,6 +4,7 @@ # Remount /bin, /dev, /root, and /home while adding the appropriate permissions. /dev /dev bind bind,nosuid,ro /bin /bin bind bind,nodev,ro +/etc /etc bind bind,nodev,nosuid /home /home bind bind,nodev,nosuid /root /root bind bind,nodev,nosuid |