summaryrefslogtreecommitdiff
path: root/Base/etc/fstab
AgeCommit message (Collapse)Author
2021-02-03Base: Make /www read-write by defaultBen Wiederhake
Since it is owned by root anyway, there is no need for 'additional security' to prevent modification of that directory. This makes it easier to quickly export files from Serenity. Fixes #5152.
2020-12-27Kernel: Introduce the DevFSLiav A
The DevFS along with DevPtsFS give a complete solution for populating device nodes in /dev. The main purpose of DevFS is to eliminate the need of device nodes generation when building the system. Later on, DevFS will assist with exposing disk partition nodes.
2020-09-06utmpupdate: Add a program for updating /var/run/utmpAndreas Kling
To keep track of ongoing terminal sessions, we now have a sort-of traditional /var/run/utmp file, like other Unix systems. Unlike other Unix systems however, ours is of course JSON. :^) The /bin/utmpupdate program is used to update the file, which is not writable by regular user accounts. This helper program is set-GID "utmp".
2020-07-28Base: Mount /etc as read/writeAndreas Kling
Let's be reasonable and have a writable /etc by default.
2020-05-29Kernel+Base: Mount root filesystem read-only :^)Sergey Bugaev
We remount /home and /root as read-write, to keep the ability to modify files there. /tmp remains read-write, as it is mounted from a TmpFS.
2020-04-06Kernel & Userland: Allow to mount image files formatted with Ext2FSLiav A
2020-04-03Revert "Kernel & Userland: Allow to mount image files formatted with Ext2FS"Andreas Kling
This reverts commit a60ea79a41845767ce40f225de20da7c99534ad1. Reverting these changes since they broke things. Fixes #1608.
2020-04-02Kernel & Userland: Allow to mount image files formatted with Ext2FSLiav A
2020-01-12Kernel+Base: Mount root as nodev,nosuidSergey Bugaev
Then bind-mount /dev and /bin while adding back the appropriate permissions :^)
2020-01-11Base: Apply some filesystem flags by defaultSergey Bugaev
Notably, /tmp is now mounted nodev,nosuid :^)
2019-08-17Kernel+SystemServer: Mount filesystems and start TTYServer in userspaceSergey Bugaev