Go to file
Colin 0890d32e70 exit on timeout error 2024-04-01 03:49:43 +00:00
compat update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
doc update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
tests update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
AUTHORS Initial revision 2006-02-23 19:11:56 +00:00
COPYING Initial revision 2006-02-23 19:11:56 +00:00
ChangeLog update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
INSTALL Initial revision 2006-02-23 19:11:56 +00:00
Makefile.am update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
Makefile.in update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
NEWS Initial revision 2006-02-23 19:11:56 +00:00
README update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
acinclude.m4 update to 0.9.1 release tarball 2024-03-31 22:06:38 +00:00
aclocal.m4 update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
cache.c update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
cache.h update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
charset_utils.c update to 0.9.1 release tarball 2024-03-31 22:06:38 +00:00
charset_utils.h update to 0.9.1 release tarball 2024-03-31 22:06:38 +00:00
compile update to 0.9.1 release tarball 2024-03-31 22:06:38 +00:00
config.guess update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
config.h.in update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
config.sub update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
configure update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
configure.ac update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
depcomp update to 0.9.1 release tarball 2024-03-31 22:06:38 +00:00
ftpfs-ls.c update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
ftpfs-ls.h Added copyright information to files. 2006-05-20 18:09:42 +00:00
ftpfs.c exit on timeout error 2024-04-01 03:49:43 +00:00
ftpfs.h update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
install-sh update to 0.9.1 release tarball 2024-03-31 22:06:38 +00:00
ltmain.sh update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
missing update to 0.9.1 release tarball 2024-03-31 22:06:38 +00:00
path_utils.c update to 0.9.1 release tarball 2024-03-31 22:06:43 +00:00
path_utils.h update to 0.9.1 release tarball 2024-03-31 22:06:38 +00:00

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.0


Compilation and Installation
============================

./configure
make
make install

Usage
=====

curlftpfs <ftpsite> <mountpoint>

ex.:
curlftpfs ftp://ftp.sunet.se/ sunet/


Debugging
=========

curlftpfs -f -v -o debug,ftpfs_debug=3 <ftpsite> <mountpoint> 

(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.2

http://sourceforge.net/tracker/index.php?func=detail&aid=1951588&group_id=976&atid=100976