$ aptitude show curlftpfs Package: curlftpfs Status: installed Automatically installed: no Version: 0.9.2-1 Priority: optional Section: utils Accompanying: Ding Honghui <hhding@vobile.cn> Unpacked size: 111k Dependencies: libc6 (> = 2.7-1), libcurl3-gnutls (> = 7.16.2-1), libfuse2 (> = 2.6), libglib2.0-0 (> = 2.12.0), fuse-utils Description: filesystem to access FTP hosts based on FUSE and cURL CurlFtpFS is a tool to mount FTP hosts local as directories. It is an FTP site and maps directory to the local filesystem. Based on FUSE (filesystem in userspace) and the cURL library, CurlFtpFS has several features: * support for SSLv3 and TLSv1 * connecting through tunneling HTTP proxies * automatic reconnection if the server times out * conversion of absolute symlinks to point back into the FTP filesystem Website: http://curlftpfs.sourceforge.net
$ sudo aptitude install curlftpfs
$ mkdir temp-ftpfs $ curlftpfs ftp: // $ USER: $ PASSWD @ $ HOST / temp-ftpfs $ cd temp-ftpfs $ ls $ find / -name '* .txt'
$ sudo umount curlftpfs # ftp: // $ USER: $ PASSWD @ $ HOST /
$ fusermount -u temp-ftpfs
Source: https://habr.com/ru/post/85084/
All Articles