码迷,mamicode.com
首页 > 其他好文 > 详细

sshfs远程挂载

时间:2014-07-14 16:27:08      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:软件   主机   error   download   package   

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


本文出自 “浪淘沙” 博客,谢绝转载!

sshfs远程挂载,布布扣,bubuko.com

sshfs远程挂载

标签:软件   主机   error   download   package   

原文地址:http://caisangzi.blog.51cto.com/6387416/1437887

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!