Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.13 KB

fuse_mount_options.md

File metadata and controls

26 lines (17 loc) · 1.13 KB
sidebar_label sidebar_position slug
FUSE Mount Options
6
/fuse_mount_options

FUSE Mount Options

This is a guide that lists important FUSE mount options. These mount options are specified by -o option when execute juicefs mount command (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 security measure restricting file access to the user mounting the file system. So all users (including root) can access the files. This option is by default only allowed to root, but this restriction can be removed with user_allow_other configuration option 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 very fast. It's recommended enable this mount option when write very small data (e.g. 100 bytes) frequently.