sshfs-3.7.3

Sshfs の概要

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 や依存パッケージが本ブックに示す最新安定バージョンでなかった場合には、BLFS 開発版においては、パッケージのビルドや処理実行が適切に行われないことがあります。

パッケージ情報

Sshfs の依存パッケージ

必須

Fuse-3.16.2, GLib-2.78.3, OpenSSH-9.5p1

任意

docutils-0.20.1 (required to build the man page)

Sshfs のインストール

以下のコマンドを実行して Sshfs をビルドします。

mkdir build &&
cd    build &&

meson setup --prefix=/usr --buildtype=release .. &&
ninja

このパッケージにテストスイートはありません。

root ユーザーになって以下を実行します。

ninja install

Sshfsの利用

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.fuse3 for all available mount options.

パッケージ構成

インストールプログラム: sshfs
インストールライブラリ: なし
インストールディレクトリ: なし

概略説明

sshfs

ssh サーバーをローカルファイルシステムにマウントします。