ubuntu 配置 sshfs

apt-get install sshfs

要想挂载远程目录,使用如下命令即可:

sshfs user@hostname:path mout_point

这里user为远程主机用户名,hostname为远程主机IP地址,path为远程主机中想要挂载到本地的目录,mount_point为挂载到本地的目录。
当不需要使用的时候,使用以下命令卸载:

fusermount -u mount_point

如果想要开机自动挂载,可以在/etc/fstab中加入下面一行:

sshfs#user@hostname:path mount_point fuse defaults,auto,allow_other 0 0

这就要求必须先把ssh自动登录配置好了,让root用户能够使用user身份登录远程主机,另外allow_other这个参数很重要,没有这个参数的话,挂载过来的目录只有root能够访问。

sshfs#root@server1:/home/qianrushi /mnt/qianrushi fuse delay_connect,defaults,auto,allow_other,port=22222,nonempty 0 0