sidebar_label | sidebar_position | slug |
---|---|---|
FUSE Mount Options |
6 |
/fuse_mount_options |
This guide lists important FUSE mount options. These mount options are specified by the option -o
when execute the command juicefs mount
(use comma to separate multiple options). For example:
juicefs mount -d -o allow_other,writeback_cache localhost ~/jfs
Enable debug log
This option overrides the default security restriction that only users amounting the file system can access to files. That is all users (including root) can access the files. Only root is allowed to use this option by default, but this restriction can be removed by the configuration option user_allow_other
in /etc/fuse.conf
.
:::note This mount option requires at least version 3.15 Linux kernel :::
FUSE supports "writeback-cache mode", which means the write()
syscall can often complete rapidly. It's recommended to enable this mount option when write small data (e.g. 100 bytes) frequently.