CentOS Stream 9 OpenSSH SSHFS を利用する方法
環境
CentOS Stream 9
概要
SSHFS (SSH Filesystem) を利用すると、SSH 接続で他ホストのファイルシステムをマウントします。
設定方法
1.fuse-sshfs をインストールします。
EPEL からインストール
# dnf --enablerepo=epel -y install fuse fuse-sshfs
2.任意の一般ユーザーで実行可能です。
例として、[cent] ユーザーで、[node01.test.com] 上の [/home/cent/work] をマウントします。
# 任意のマウント用ディレクトリ作成
$ mkdir ~/sshmnt
# SSHFS でマウント
$ sshfs node01.test.com:/home/cent/work ~/sshmnt cent@node01.test.com's password:
結果確認
$ df -hT
3.アンマウントする場合以下のコマンドを実行する
$ fusermount -u ~/sshmnt