sshfsを使う

FUSE_structure Linux
FUSE_structure

■fuse over sshを利用してdataのやりとりを行う。
★securityについては、適宜考慮すること。

■fuse(Filesystem in Userspace)本家 http://fuse.sourceforge.net/
■SSH Filesystem本家 http://fuse.sourceforge.net/sshfs.html

インストール

yum install --enablerepo=rpmforge fuse fuse-sshfs

利用方法
★あらかじめマウントポイントを作成しておくこと。

/bin/mkdir /mnt/hoge/

■マウント
★マウント時にUID,GIDをあわせ、権限の問題を回避する。

/usr/bin/sshfs -o uid=1000,gid=1000 hoge-user@hostname:/home/hoge-user/ /mnt/hoge/

■アンマウント

/usr/bin/fusermount -u /mnt/hoge/

参考情報

FUSE — The Linux Kernel documentation

ロゴ https://blog.ssrf.in/post/fuse-tutorial/

コメント

タイトルとURLをコピーしました