Buscar este blog

lunes, 5 de septiembre de 2011

How to install sshfs and fuse / Mount remote FS




Info to link: http://fuse.sourceforge.net/sshfs.html

Download fuse
wget http://sourceforge.net/projects/fuse/files/fuse-2.X/2.8.5/fuse-2.8.5.tar.gz/download

Install fuse.

tar -xzf fuse-2.8.5.tar.gz

Install fuse.

[root@Server fuse]# cd fuse-2.8.5
[root@Server fuse-2.8.5]# ./configure
[root@Server fuse-2.8.5]# make
[root@Server fuse-2.8.5]# make install


Donwload sshfs

wget http://sourceforge.net/projects/fuse/files/sshfs-fuse/2.3/sshfs-fuse-2.3.tar.gz/download
  
Install  sshfs-fuse
tar -xzf sshfs-fuse-2.3.tar.gz

[root@Server fuse]# cd sshfs-fuse-2.3
[root@Server sshfs-fuse-2.3]# ./configure
[root@Server sshfs-fuse-2.3]# make
[root@Server sshfs-fuse-2.3]# make install

[root@Server sshfs-fuse-2.3] ln -s /usr/local/lib/libfuse.so.2 /lib64/ (x64)
[root@Server sshfs-fuse-2.3] ln -s /usr/local/lib/libfuse.so.2 /lib/ (for 32-bit)


Mount remote FS
sshfs root@remoteserver:/srv/ /mnt/remote-fs/ -C

No hay comentarios:

Publicar un comentario