Difference between revisions of "SSHFS"
From CBLFS
Jump to navigationJump to searchWeibullguy (talk | contribs) |
(Updated download links, added introduction and homepage link) |
||
Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
− | | | + | | https://github.com/libfuse/sshfs/releases/download/sshfs_2.8/sshfs-2.8.tar.gz |
|} | |} | ||
---- | ---- | ||
− | {{ | + | {{Package-Introduction|A network filesystem client to connect to SSH servers|https://github.com/libfuse/sshfs/}} |
== Dependencies == | == Dependencies == |
Latest revision as of 18:51, 6 August 2016
Download Source: | https://github.com/libfuse/sshfs/releases/download/sshfs_2.8/sshfs-2.8.tar.gz |
---|
Contents
Introduction to SSHFS
A network filesystem client to connect to SSH servers
Project Homepage: https://github.com/libfuse/sshfs/
Dependencies
Required
- OpenSSH
- pkg-config
- FUSE >= 2.2
- Glib2
Non-Multilib
Compile the package:
./configure --prefix=/usr make
Install the package
make install
Multilib
32Bit
Compile the package:
PKG_CONFIG_PATH="$PKG_CONFIG_PATH32" CC="gcc ${BUILD32}" \ ./configure --prefix=/usr && make
Install the package
make install
N32
Compile the package:
PKG_CONFIG_PATH="$PKG_CONFIG_PATHN32" CC="gcc ${BUILDN32}" \ ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package
make install
64Bit
Compile the package
PKG_CONFIG_PATH="$PKG_CONFIG_PATH64" CC="gcc ${BUILD64}" \ ./configure --prefix=/usr --libdir=/usr/lib64 && make
Install the package
make install