Welcome to Vifm Q&A, where you can ask questions about using Vifm. Registration is optional, anonymous posts are moderated. E-mail and GitHub logins are enabled.
0 votes
in vifm by

CurlFtpFs is old and unsupported. It can't even copy files with a "#" in the filename.

https://alternativeto.net/software/curlftpfs/about/ says it has been obsoleted by LUFS, but LUFS seems to be even older (2003)!

Is there anything better?

I found AVFS, but I am not sure it is usable with Vifm. There are some old instructions for rox though.

1 Answer

0 votes
by

See this question for example of using AVFS for viewing archives, not sure how well it applies for remote mounts though.

by

I ended up writing a script like this that logs into ftpserver.com (fictional) with login / secretpassword and makes its contents available as ftpdir/. To log out, I unmount ~/.avfs.

#!/bin/sh
avfsd ~/.avfs
rm ftpdir
mount-avfs ftpdir /#ftp:login@ftpserver.com
rm ftpdir
echo secretpassword >~/.avfs/#ftp_ctl:login@ftpserver.com/password
ln -s ~/.avfs/#ftp:login@ftpserver.com ftpdir
by

There is also rclone which can be used in place of CurlFtpFs.

If you would like to make a bug report or feature request consider using GitHub, SourceForge or e-mail. Posting such things here is acceptable, but this is not a perfect place for them.
...