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.
本パッケージは LFS-10.0 において正しくビルドでき動作することが確認されています。
ダウンロード (HTTP): https://github.com/libfuse/sshfs/releases/download/sshfs-3.7.1/sshfs-3.7.1.tar.xz
ダウンロード MD5 sum: 22ac23d05ca7c56fb568627f086374d0
ダウンロードサイズ: 52 KB
必要ディスク容量: 1.7 MB
概算ビルド時間: less than 0.1 SBU
Fuse-3.10.1, GLib-2.66.4, OpenSSH-8.4p1
docutils-0.16 (required to build the man page)
以下のコマンドを実行して Sshfs をビルドします。
mkdir build && cd build && meson --prefix=/usr .. && ninja
このパッケージにテストスイートはありません。
root
ユーザーになって以下を実行します。
ninja install
To mount an ssh server you need to be able to log into the server. For example, to mount your remote home folder to the local ~/examplepath (the directory must exist and you must have permissions to write to it):
sshfs example.com:/home/userid ~/examplepath
When you've finished work and want to unmount it again:
fusermount3 -u ~/example
You can also mount an sshfs
filesystem at boot by adding an entry similar to the following in
the /etc/fstab
file:
userid@example.com:/path /media/path fuse.sshfs _netdev,IdentityFile=/home/userid/.ssh/id_rsa 0 0
See man 1 sshfs and man 8 mount.fuse for all available mount options.
最終更新日: 2020-11-10 21:10:37 +0900