CurlFtpFS
From Gentoo Wiki
Article status
This article has some todo items:
- Add instructions for using from fstab.
- Expand article.
CurlFtpFS allows for mounting an FTP folder as a regular directory to the local directory tree.
Installation
Kernel
CurlFtpFS needs FUSE activated in the kernel:
File systems --->
<*> FUSE (Filesystem in Userspace) support
Emerge
Install net-fs/curlftpfs:
root #
emerge --ask net-fs/curlftpfs
Usage
As a regular user
First, create a mount point:
user $
mkdir ./ftp
Mounting
Then mount the necessary catalog from the server to this mount point:
user $
curlftpfs ftp://server/catalog/ ./ftp/ -o user=username:password,utf8
Unmounting
user $
fusermount -u ./ftp
See also
- SSHFS — a secure shell client used to mount remote filesystems to local machines.