-
Trying to reload fstab without reboot, I came across What is the equivalent to this command on voidliux? Or, asked a different way, which service can I restart to get fstab reloaded? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
there is no general command, but |
Beta Was this translation helpful? Give feedback.
-
There is no service responsibly for mounting fstab entries, its done via an oneshot script during the early boot process ( To mount additional filesystems either run |
Beta Was this translation helpful? Give feedback.
There is no service responsibly for mounting fstab entries, its done via an oneshot script during the early boot process (
/etc/runit/core-services/03-filesystems.sh
).To mount additional filesystems either run
mount /mount-point
which uses the fstab options ormount -a
which tries to mount everything from fstab.