Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.14 KB

fuse_mount_options.md

File metadata and controls

28 lines (19 loc) · 1.14 KB
sidebar_label sidebar_position slug
FUSE Mount Options
6
/fuse_mount_options

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

debug

Enable debug log

allow_other

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.

writeback_cache

:::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.