SSHFS 是利用 SSH 來傳輸檔案,作者參考 LUFS 另外寫 SSHFS 的
SSHFS 是依靠 FUSE (userspace filesystem)
在 CentOS 6.4 x64 環境安裝,套件是 fuse-sshfs
這樣子就掛起來了
sshfs root@remote_ip:/root/ /path/dir
SSHFS 最新檔 2.4 版,2012-03-08,還滿新的
搭配 sshpass
sshfs -o ssh_command='sshpass -p 123456 ssh' root@remote_ip:/root/ /path/dir
留言