Difference between revisions of "SSHFS"

From CBLFS
Jump to navigationJump to search
(Updated download links, added introduction and homepage link)
 
(One intermediate revision by one other user not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://downloads.sourceforge.net/fuse/sshfs-fuse-1.8.tar.gz
+
| https://github.com/libfuse/sshfs/releases/download/sshfs_2.8/sshfs-2.8.tar.gz
 
|}
 
|}
  
 
----
 
----
  
{{Blank-Package-Introduction}}
+
{{Package-Introduction|A network filesystem client to connect to SSH servers|https://github.com/libfuse/sshfs/}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 16: Line 16:
 
* [[FUSE]] >= 2.2
 
* [[FUSE]] >= 2.2
 
* [[Glib2]]
 
* [[Glib2]]
=== Optional ===
 
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 30: Line 29:
  
 
== Multilib ==
 
== Multilib ==
'''''This package does not provide any libraries so only one installation is needed.'''''
 
  
 
=== 32Bit ===
 
=== 32Bit ===
Line 42: Line 40:
 
Install the package
 
Install the package
  
  make install &&
+
  make install
mv -v /usr/bin/sshfs{,-32}
 
  
 
=== N32 ===
 
=== N32 ===
Line 49: Line 46:
 
Compile the package:
 
Compile the package:
  
   
+
  PKG_CONFIG_PATH="$PKG_CONFIG_PATHN32" CC="gcc ${BUILDN32}" \
 +
    ./configure --prefix=/usr --libdir=/usr/lib32 &&
 +
make
  
 
Install the package
 
Install the package
  
 +
make install
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 59: Line 59:
  
 
  PKG_CONFIG_PATH="$PKG_CONFIG_PATH64" CC="gcc ${BUILD64}" \
 
  PKG_CONFIG_PATH="$PKG_CONFIG_PATH64" CC="gcc ${BUILD64}" \
     ./configure --prefix=/usr
+
     ./configure --prefix=/usr --libdir=/usr/lib64 &&
 
  make
 
  make
  

Latest revision as of 19:51, 6 August 2016

Download Source: https://github.com/libfuse/sshfs/releases/download/sshfs_2.8/sshfs-2.8.tar.gz

Introduction to SSHFS

A network filesystem client to connect to SSH servers

Project Homepage: https://github.com/libfuse/sshfs/

Dependencies

Required

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