Difference between revisions of "SSHFS"

From CBLFS
Jump to navigationJump to search
(New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://sunsite.ualberta.ca/pub/OpenBSD/OpenSSH/portable/openssh-{{OpenSSH-Version}}.tar.gz |} ---- == D...)
 
(Updated download links, added introduction and homepage link)
 
(11 intermediate revisions by 4 users not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://sunsite.ualberta.ca/pub/OpenBSD/OpenSSH/portable/openssh-{{OpenSSH-Version}}.tar.gz
+
| 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 ==
  
 
=== Required ===
 
=== Required ===
* [[Openssh]]
+
* [[OpenSSH]]
* [[Fuse]]
+
* [[pkg-config]]
=== Optional ===
+
* [[FUSE]] >= 2.2
 
+
* [[Glib2]]
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 29: Line 29:
  
 
== Multilib ==
 
== Multilib ==
'''''This package does not provide any libraries so only one installation is needed.'''''
 
  
 
=== 32Bit ===
 
=== 32Bit ===
Line 35: Line 34:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
+
  PKG_CONFIG_PATH="$PKG_CONFIG_PATH32" CC="gcc ${BUILD32}" \
 +
    ./configure --prefix=/usr &&
 
  make
 
  make
  
 
Install the package
 
Install the package
  
  make install &&
+
  make install
mv -v /usr/bin/sshfs{,-32}
 
  
 
=== N32 ===
 
=== N32 ===
Line 47: 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 56: Line 58:
 
Compile the package
 
Compile the package
  
  CC="gcc ${BUILD64}" ./configure --prefix=/usr
+
  PKG_CONFIG_PATH="$PKG_CONFIG_PATH64" CC="gcc ${BUILD64}" \
 +
    ./configure --prefix=/usr --libdir=/usr/lib64 &&
 
  make
 
  make
  
Line 62: Line 65:
  
 
  make install
 
  make install
 +
 +
[[Category:Network Utilities]]

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