diff options
author | Liav A <liavalb@gmail.com> | 2020-03-26 02:51:16 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-02 12:03:08 +0200 |
commit | a60ea79a41845767ce40f225de20da7c99534ad1 (patch) | |
tree | 771b082c27a3cf8060fb23a8548be83ec8837677 /Base/etc | |
parent | 6b59311d4bdc1447e085573f9bd2c42819e264dd (diff) | |
download | serenity-a60ea79a41845767ce40f225de20da7c99534ad1.zip |
Kernel & Userland: Allow to mount image files formatted with Ext2FS
Diffstat (limited to 'Base/etc')
-rw-r--r-- | Base/etc/fstab | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Base/etc/fstab b/Base/etc/fstab index 08b414ddec..a80aefc78a 100644 --- a/Base/etc/fstab +++ b/Base/etc/fstab @@ -5,6 +5,6 @@ /dev /dev bind bind,nosuid /bin /bin bind bind,nodev -proc /proc proc nosuid -devpts /dev/pts devpts noexec,nosuid -tmp /tmp tmp nodev,nosuid +none /proc proc nosuid +none /dev/pts devpts noexec,nosuid +none /tmp tmp nodev,nosuid |