The Sshfs package contains a filesystem client based on the SSH File Transfer Protocol. This is useful for mounting a remote computer that you have ssh access to as a local filesystem. This allows you to drag and drop files or run shell commands on the remote files as if they were on your local computer.
This package is known to build and work properly using an LFS-8.0 platform.
Download (HTTP): https://github.com/libfuse/sshfs/releases/download/sshfs_2.8/sshfs-2.8.tar.gz
Download MD5 sum: 0ba25e848ee59e2595d6576c8f6284b6
Download size: 150 KB
Estimated disk space required: 2.2 MB
Estimated build time: less than 0.1 SBU
Fuse-2.9.7, GLib-2.50.3, and OpenSSH-7.4p1.
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/sshfs
Install Sshfs by running the following commands:
./configure --prefix=/usr && make
This package does not come with a test suite.
Now, as the root
user:
make install
To mount an ssh server you need to be able to log into the server. For example, to mount your home folder on the computer called THINGY on the folder ~/MOUNTPATH (the directory must exist and you must have permissions to write to it):
sshfs THINGY:~ ~/MOUNTPATH
When you've finished work and want to unmount it again:
fusermount -u ~/MOUNTPATH
Last updated on 2016-08-27 23:14:16 +0200