Mount Options
mount.flexfs start accepts a large set of options. The authoritative list — every flag with its type, default, and one-line description — lives in the mount.flexfs CLI reference. Flags marked internal there are hidden from --help output and are intended for advanced tuning or debugging. This page groups the options by purpose and adds the guidance that does not fit in a reference row.
POSIX and access control
Section titled “POSIX and access control”These control POSIX semantics and access enforcement: --acl and --xattr; the mount-behavior flags --noAtime, --noExec, --noSUID, and --nonEmpty; and the squashing flags --rootSquash, --allSquash, --anonUID, --anonGID, and --umask. See Filesystem options for the full list with defaults.
Caching
Section titled “Caching”The on-disk cache (--diskFolder, --diskQuota, --diskMaxBlockSize, --diskWriteback) is the part of the caching stack worth tuning; the in-memory block cache and buffer pool are sized automatically and rarely need attention. See Cache and performance flags for defaults, and the performance tuning guide for when to override them.
Networking
Section titled “Networking”--sse requests S3 server-side encryption for the mount’s block writes. See the CLI reference.
Credentials and auth
Section titled “Credentials and auth”--credsFile selects the credentials file (its <name> placeholder is replaced with the volume name). See Credentials and the credentials file format.
Update control
Section titled “Update control”--noRemount, --noUpdate, and --staging govern the auto-update mechanism. See Update control flags and Auto-Update.
Logging and diagnostics
Section titled “Logging and diagnostics”--verbose, --logFile, --metrics / --metricsPort, and --reportErrors are the logging controls. See Logging and diagnostics flags and the logging guide.
Time-travel
Section titled “Time-travel”--atTime mounts the filesystem at a point in time (RFC 3339, implies --ro). See Time-Travel Mounting.
Passing options via fstab
Section titled “Passing options via fstab”All flags can be passed as fstab mount options by removing the -- prefix. Boolean flags are set by name alone; name=false is accepted too, though every boolean here already defaults to false. For example:
<volume-name> /mnt/data flexfs _netdev,nofail,x-systemd.mount-timeout=660,ro,acl,verbose 0 0See fstab Integration for details.