首页 > 代码库 > sshfs远程挂载
sshfs远程挂载
sshfs指令可以通过ssh协议挂载远程主机上的目录,该软件需要手动安装。
sshfs 2.3的版本安装如下
wget http://sourceforge.net/projects/fuse/files/sshfs-fuse/2.3/sshfs-fuse-2.3.tar.gz/download
wget tar xf download cd download ./configure && make && make install #此时会报错如下 configure: error: Package requirements (fuse >= 2.3 glib-2.0 gthread-2.0) were not met: No package ‘fuse‘ found No package ‘glib-2.0‘ found No package ‘gthread-2.0‘ found 缺少包,fuse模块是sshfs使用的前提 解决方法如下: yum -y install fuse fuse-* glib2 glib2-* 简单使用如下: sshfs -o cache=yes,allow_other,password_stdin=123456 root@192.168.56.102:/root /mnt echo 123456 | sshfs -o cache=yes,allow_other,password_stdin root@192.168.56.102:/root /mnt
本文出自 “浪淘沙” 博客,谢绝转载!
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。