Ubuntu使用sshfs挂载远程目录
1. 安装sshfs
apt-get install sshfs fuse
2. 挂载远程目录
sshfs [user@]host:[dir] mountpoint [options]
3. 挂载远程目录其他用户可以使用
sshfs testuser@testhost:testdir ~/testlocaldir -o allow_other
将远程testhost上的用户testuser的/testuser/testdir挂载到本地/home/XXX/testlocaldir, 允许其他用户访问
若提示一下错误:fusermount: option allow_other only allowed if "user_allow_other" is set in /etc/fuse.conf
则在/etc/fuse.conf中将user_allow_other前的注释符合#删除保存
以上是 Ubuntu使用sshfs挂载远程目录 的全部内容, 来源链接: utcz.com/z/515697.html