<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mechaphoenix25</id>
	<title>WebOS Internals - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mechaphoenix25"/>
	<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/wiki/Special:Contributions/Mechaphoenix25"/>
	<updated>2026-04-15T18:11:45Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Application:SSHFS&amp;diff=18281</id>
		<title>Application:SSHFS</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Application:SSHFS&amp;diff=18281"/>
		<updated>2011-09-05T05:32:11Z</updated>

		<summary type="html">&lt;p&gt;Mechaphoenix25: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is an optware package that allows you to mount the filesystem of any machine with an SSH+SFTP server, onto a local directory.  This means that programs on your WebOS device can then access the remote server just like they access your local &lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
usage: sshfs [user@]host:[dir] mountpoint [options]&lt;br /&gt;
&lt;br /&gt;
== general options: ==&lt;br /&gt;
&lt;br /&gt;
'''-o opt,[opt...]'''&lt;br /&gt;
mount options&lt;br /&gt;
&lt;br /&gt;
'''-h --help'''&lt;br /&gt;
print help&lt;br /&gt;
&lt;br /&gt;
'''-V --version'''&lt;br /&gt;
print version&lt;br /&gt;
&lt;br /&gt;
== SSHFS options: ==&lt;br /&gt;
&lt;br /&gt;
'''-p PORT'''&lt;br /&gt;
equivalent to ''''-o port=PORT''''&lt;br /&gt;
&lt;br /&gt;
'''-C'''&lt;br /&gt;
equivalent to ''''-o compression=yes''''&lt;br /&gt;
&lt;br /&gt;
'''-1'''&lt;br /&gt;
equivalent to ''''-o ssh_protocol=1''''&lt;br /&gt;
&lt;br /&gt;
'''-o reconnect'''&lt;br /&gt;
reconnect to server&lt;br /&gt;
&lt;br /&gt;
'''-o sshfs_sync'''&lt;br /&gt;
synchronous writes&lt;br /&gt;
&lt;br /&gt;
'''-o no_readahead'''&lt;br /&gt;
synchronous reads (no speculative readahead)&lt;br /&gt;
&lt;br /&gt;
'''-o sshfs_debug'''&lt;br /&gt;
print some debugging information&lt;br /&gt;
&lt;br /&gt;
'''-o cache=YESNO'''&lt;br /&gt;
enable caching {yes,no} (default: yes)&lt;br /&gt;
&lt;br /&gt;
'''-o cache_timeout=N'''&lt;br /&gt;
sets timeout for caches in seconds (default: 20)&lt;br /&gt;
&lt;br /&gt;
'''-o cache_X_timeout=N'''&lt;br /&gt;
sets timeout for {stat,dir,link} cache&lt;br /&gt;
&lt;br /&gt;
'''-o workaround=LIST'''&lt;br /&gt;
colon separated list of workarounds&lt;br /&gt;
none&lt;br /&gt;
no workarounds enabled&lt;br /&gt;
all&lt;br /&gt;
all workarounds enabled&lt;br /&gt;
[no]rename&lt;br /&gt;
fix renaming to existing file (default: off)&lt;br /&gt;
[no]nodelaysrv&lt;br /&gt;
set nodelay tcp flag in ssh (default: off)&lt;br /&gt;
[no]truncate&lt;br /&gt;
fix truncate for old servers (default: off)&lt;br /&gt;
[no]buflimit&lt;br /&gt;
fix buffer fillup bug in server (default: on)&lt;br /&gt;
&lt;br /&gt;
'''-o idmap=TYPE'''&lt;br /&gt;
user/group ID mapping, possible types are:&lt;br /&gt;
none&lt;br /&gt;
no translation of the ID space (default)&lt;br /&gt;
user&lt;br /&gt;
only translate UID of connecting user&lt;br /&gt;
&lt;br /&gt;
'''-o ssh_command=CMD'''&lt;br /&gt;
execute CMD instead of 'ssh'&lt;br /&gt;
&lt;br /&gt;
'''-o ssh_protocol=N'''&lt;br /&gt;
ssh protocol to use (default: 2)&lt;br /&gt;
&lt;br /&gt;
'''-o sftp_server=SERV'''&lt;br /&gt;
path to sftp server or subsystem (default: sftp)&lt;br /&gt;
&lt;br /&gt;
'''-o directport=PORT'''&lt;br /&gt;
directly connect to PORT bypassing ssh&lt;br /&gt;
&lt;br /&gt;
'''-o transform_symlinks'''&lt;br /&gt;
transform absolute symlinks to relative&lt;br /&gt;
&lt;br /&gt;
'''-o follow_symlinks'''&lt;br /&gt;
follow symlinks on the server&lt;br /&gt;
&lt;br /&gt;
'''-o no_check_root'''&lt;br /&gt;
don't check for existence of 'dir' on server&lt;br /&gt;
&lt;br /&gt;
'''-o password_stdin'''&lt;br /&gt;
read password from stdin (only for pam_mount!)&lt;br /&gt;
&lt;br /&gt;
'''-o SSHOPT=VAL'''&lt;br /&gt;
ssh options (see man ssh_config)&lt;br /&gt;
&lt;br /&gt;
== FUSE options: ==&lt;br /&gt;
&lt;br /&gt;
'''-d -o debug'''&lt;br /&gt;
enable debug output (implies -f)&lt;br /&gt;
&lt;br /&gt;
'''-f'''&lt;br /&gt;
foreground operation&lt;br /&gt;
&lt;br /&gt;
'''-s'''&lt;br /&gt;
disable multi-threaded operation&lt;br /&gt;
&lt;br /&gt;
'''-o allow_other'''&lt;br /&gt;
allow access to other users&lt;br /&gt;
&lt;br /&gt;
'''-o allow_root'''&lt;br /&gt;
allow access to root&lt;br /&gt;
&lt;br /&gt;
'''-o nonempty'''&lt;br /&gt;
allow mounts over non-empty file/dir&lt;br /&gt;
&lt;br /&gt;
'''-o default_permissions'''&lt;br /&gt;
enable permission checking by kernel&lt;br /&gt;
&lt;br /&gt;
'''-o fsname=NAME'''&lt;br /&gt;
set filesystem name&lt;br /&gt;
&lt;br /&gt;
'''-o subtype=NAME'''&lt;br /&gt;
set filesystem type&lt;br /&gt;
&lt;br /&gt;
'''-o large_read'''&lt;br /&gt;
issue large read requests (2.4 only)&lt;br /&gt;
&lt;br /&gt;
'''-o max_read=N'''&lt;br /&gt;
set maximum size of read requests&lt;br /&gt;
&lt;br /&gt;
'''-o hard_remove'''&lt;br /&gt;
immediate removal (don't hide files)&lt;br /&gt;
&lt;br /&gt;
'''-o use_ino'''&lt;br /&gt;
let filesystem set inode numbers&lt;br /&gt;
&lt;br /&gt;
'''-o readdir_ino'''&lt;br /&gt;
try to fill in d_ino in readdir&lt;br /&gt;
&lt;br /&gt;
'''-o direct_io'''&lt;br /&gt;
use direct I/O&lt;br /&gt;
&lt;br /&gt;
'''-o kernel_cache'''&lt;br /&gt;
cache files in kernel&lt;br /&gt;
&lt;br /&gt;
'''-o [no]auto_cache'''&lt;br /&gt;
enable caching based on modification times&lt;br /&gt;
&lt;br /&gt;
'''-o umask=M'''&lt;br /&gt;
set file permissions (octal)&lt;br /&gt;
&lt;br /&gt;
'''-o uid=N'''&lt;br /&gt;
set file owner&lt;br /&gt;
&lt;br /&gt;
'''-o gid=N'''&lt;br /&gt;
set file group&lt;br /&gt;
&lt;br /&gt;
'''-o entry_timeout=T'''&lt;br /&gt;
cache timeout for names (1.0s)&lt;br /&gt;
&lt;br /&gt;
'''-o negative_timeout=T'''&lt;br /&gt;
cache timeout for deleted names (0.0s)&lt;br /&gt;
&lt;br /&gt;
'''-o attr_timeout=T'''&lt;br /&gt;
cache timeout for attributes (1.0s)&lt;br /&gt;
&lt;br /&gt;
'''-o ac_attr_timeout=T'''&lt;br /&gt;
auto cache timeout for attributes (attr_timeout)&lt;br /&gt;
&lt;br /&gt;
'''-o intr'''&lt;br /&gt;
allow requests to be interrupted&lt;br /&gt;
&lt;br /&gt;
'''-o intr_signal=NUM'''&lt;br /&gt;
signal to send on interrupt (10)&lt;br /&gt;
&lt;br /&gt;
'''-o modules=M1[:M2...]'''&lt;br /&gt;
names of modules to push onto filesystem stack&lt;br /&gt;
&lt;br /&gt;
'''-o max_write=N'''&lt;br /&gt;
set maximum size of write requests&lt;br /&gt;
&lt;br /&gt;
'''-o max_readahead=N'''&lt;br /&gt;
set maximum readahead&lt;br /&gt;
&lt;br /&gt;
'''-o async_read'''&lt;br /&gt;
perform reads asynchronously (default)&lt;br /&gt;
&lt;br /&gt;
'''-o sync_read'''&lt;br /&gt;
perform reads synchronously&lt;br /&gt;
&lt;br /&gt;
== Module options: ==&lt;br /&gt;
&lt;br /&gt;
[subdir]&lt;br /&gt;
&lt;br /&gt;
'''-o subdir=DIR'''&lt;br /&gt;
prepend this directory to all paths (mandatory)&lt;br /&gt;
&lt;br /&gt;
'''-o [no]rellinksa'''&lt;br /&gt;
transform absolute symlinks to relative&lt;br /&gt;
&lt;br /&gt;
[iconv]&lt;br /&gt;
&lt;br /&gt;
'''-o from_code=CHARSET'''&lt;br /&gt;
original encoding of file names (default: UTF-8)&lt;br /&gt;
&lt;br /&gt;
'''-o to_code=CHARSET'''&lt;br /&gt;
new encoding of the file names (default: ISO-8859-2)&lt;/div&gt;</summary>
		<author><name>Mechaphoenix25</name></author>
	</entry>
</feed>