Fuse FTP-FS (fuse filesystem) -- connection is OK but nothing is visible (neither are directories)
mkdir /tmp/xxx
curlftpfs ftp://ftp:ftp@192.168.x.x /tmp/xxx
cd /tmp/xxx
ls -al # empty result
touch x # freeze
This empty result is probably due to the format of the LIST output -- the way it was implemented is not understood by FuseFS.
Second problem: FuseFS sends "LIST -a", the "-a" gets treated by the server as filename/dirname and it tries to list "cwd/-a" which fails.
Touch freeze... not sure what happens here.
Fuse FTP-FS (fuse filesystem) -- connection is OK but nothing is visible (neither are directories)
This empty result is probably due to the format of the LIST output -- the way it was implemented is not understood by FuseFS.
Second problem: FuseFS sends "LIST -a", the "-a" gets treated by the server as filename/dirname and it tries to list "cwd/-a" which fails.
Touch freeze... not sure what happens here.