man sshfs (Commandes) - mount filesystems over ssh protocol

NAME

sshfs - mount filesystems over ssh protocol

SYNOPSIS

sshfs [user@]host:[dir] mountpoint [options]

DESCRIPTION

sshfs is a filesystem client based on the SSH File Transfer Protocol. Since most SSH servers already support this protocol it is very easy to set up: i.e. on the server side there's nothing to do. On the client side mounting the filesystem is as easy as logging into the server with ssh.

SSHFS OPTIONS

-V
show version information
-p <port>
equivalent to '-o port=PORT'
-C
equivalent to '-o compression=yes'
-o reconnect
reconnect to server
-o sshfs_sync
synchronous writes
-o no_readahead
synchronous reads (no speculative readahead)
-o sshfs_debug
print some debugging information
-o cache=<yes/no>
enable caching {yes,no} (default: yes)
-o cache_timeout=<seconds>
sets timeout for caches in seconds (default: 20)
-o cache_X_timeout=<seconds>
sets timeout for {stat,dir,link} cache
-o ssh_command=<command>
execute command instead of 'ssh'
-o directport=<port>
directly connect to PORT bypassing ssh
-o idmap=<type>
translate remote type {none,user} for this id
-o SSHOPT=<value>
ssh options (see man ssh_config)

FUSE OPTIONS

-d
enable debug output (implies -f)
-f
foreground operation
-s
disable multithreaded operation
-r
mount read only (equivalent to '-o ro')
-o opt,[opt...]
mount options
-h
print help

MOUNT OPTIONS

default_permissions
enable permission checking
allow_other
allow access to other users
allow_root
allow access to root
kernel_cache
cache files in kernel
large_read
issue large read requests (2.4 only)
direct_io
use direct I/O
max_read=<value>
set maximum size of read requests
hard_remove
immediate removal (don't hide files)
debug
enable debug output
fs_name=<name>
set filesystem name in mtab
use_ino
let filesystem set inode numbers
readdir_ino
try to fill in d_ino in readdir

AUTHOR

This manpage was written by Bartosz Fenski <fenio@debian.org> for the Debian distribution (but it may be used by others).

The main author of sshfs is Miklos Szeredi <mszeredi@inf.bme.hu>.