1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:38:13 +00:00

mount: Allow extending fstab via drop-in files in fstab.d

This commit is contained in:
Tim Schumacher 2022-06-30 19:42:36 +02:00 committed by Linus Groh
parent e04155475d
commit 80705a72bd
2 changed files with 29 additions and 2 deletions

View file

@ -16,7 +16,7 @@ If invoked without any arguments, `mount` prints a list of all currently mounted
filesystems.
If invoked as `mount -a`, `mount` mounts all the filesystems configured in
`/etc/fstab`. This is normally done on system startup by
`/etc/fstab` and `/etc/fstab.d/*`. This is normally done on system startup by
[`SystemServer`(7)](help://man/7/SystemServer).
Otherwise, `mount` performs a single filesystem mount. Source should be a path
@ -36,6 +36,7 @@ Additionally, the name `defaults` is accepted and ignored.
## Files
* `/etc/fstab` - read by `mount -a` on startup to find out which filesystems to mount.
* `/etc/fstab.d` - directory with drop-in additions to the normal `fstab` file, also read by `mount -a`.
* `/proc/df` - read by `mount` to get information about mounted filesystems.
## Examples