Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bmwiedemann/curlftpfs
mount FTP dirs via FUSE
https://github.com/bmwiedemann/curlftpfs
Last synced: about 1 month ago
JSON representation
mount FTP dirs via FUSE
- Host: GitHub
- URL: https://github.com/bmwiedemann/curlftpfs
- Owner: bmwiedemann
- License: gpl-2.0
- Created: 2015-04-16T10:56:05.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-16T11:16:54.000Z (over 9 years ago)
- Last Synced: 2024-11-20T09:26:23.372Z (about 2 months ago)
- Language: C
- Size: 203 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
CurlFtpFS
=========CurlFtpFS is a filesystem for acessing ftp hosts based on FUSE and
libcurl. It automatically reconnects if the server times out.My motivation to start this project was to learn how to program using
Curl (http://curl.haxx.se) and Fuse (http://fuse.sourceforge.net). I
also wanted to maintain my website (http://www.golaberto.com.br) using
the tools that I was used to, like cd, mv, cp and vim.As the FTP protocol is not very feature rich, this filesystem does not
fulfill every constraint of a real filesystem, but it should be usable
for simple tasks like copying and editing files.Requirements
============glib-2.0
libcurl >= 7.17.0Compilation and Installation
============================./configure
make
make installUsage
=====curlftpfs
ex.:
curlftpfs ftp://ftp.sunet.se/ sunet/Debugging
=========curlftpfs -f -v -o debug,ftpfs_debug=3
(runs the curlftpfs in foreground and shows libcurl verbose debug output)
Known Problems
==============1) Several GUI application (gedit, leafpad,...) use open(O_RDWR) + seek mode for saving files
which cannot be supported by the FTP protocol. Therefore saving files might throw an error.
Hopefully future kernels will provide special errno's to make it easier to
deal with less capable file-systems.2) There seems to be a bug in libcurl 7.18 which sometimes causes problems reading files.
Should be fixed in libcurl >= 7.18.2http://sourceforge.net/tracker/index.php?func=detail&aid=1951588&group_id=976&atid=100976