-
Notifications
You must be signed in to change notification settings - Fork 494
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
180 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Miklos Szeredi <miklos@szeredi.hu> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
2004-12-04 Miklos Szeredi <miklos@szeredi.hu> | ||
|
||
* Started ChangeLog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
What is new in 1.0 | ||
------------------ | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
Abstract | ||
======== | ||
|
||
This 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. | ||
|
||
The idea of sshfs was taken from the SSHFS filesystem distributed with | ||
LUFS, which I found very useful. There were some limitations of that | ||
codebase, so I rewrote it. Features of this implementation are: | ||
|
||
- Based on FUSE (the best userspace filesystem framework for linux ;) | ||
|
||
- Multithreading: more than one request can be on it's way to the | ||
server | ||
|
||
- Allowing large reads (max 64k) | ||
|
||
- Caching directory contents | ||
|
||
|
||
How to mount a filesystem | ||
========================= | ||
|
||
Once sshfs is installed (see next section) running it is very simple: | ||
|
||
sshfs hostname: /mountpoint | ||
|
||
Note, that it's recommended to run it as user, not as root. For this | ||
to work the mountpoint must be owned by the user. If the username is | ||
different on the host you are connecting to, then use the | ||
"username@host:" form. If you need to enter a password sshfs will ask | ||
for it (actually it just runs ssh which ask for the password if | ||
needed). You can also specify a directory after the ":". The default | ||
is the home directory. | ||
|
||
|
||
Installing | ||
========== | ||
|
||
First you need to download FUSE 2.2 or later from: | ||
|
||
http://fuse.sourceforge.net | ||
|
||
After installing FUSE, compile sshfs the usual way: | ||
|
||
./configure | ||
make | ||
make install (as root) | ||
|
||
And you are ready to go. | ||
|
||
|
||
Bugs and feature requests | ||
========================= | ||
|
||
Send bug reports to <miklos@szeredi.hu>. | ||
|
||
Good luck! | ||
Miklos Szeredi |
Oops, something went wrong.