Blame FAQ

Packit Service a2489d
Q: I have compile/link problems.
Packit Service a2489d
A: Some common installation problems are described in the INSTALL file.
Packit Service a2489d
   If your case is not covered, please send a problem report.
Packit Service a2489d
Packit Service a2489d
Q: How can I see the greeting message from the server?
Packit Service a2489d
A: Try `debug 3'. It is disabled by default to keep the screen clear in case
Packit Service a2489d
   of several simultaneous connections.
Packit Service a2489d
Packit Service a2489d
Q: Why doesn't lftp download files like this: `lftp ftp://host/path/file'?
Packit Service a2489d
A: It expects an URL of a directory. To download a file use `lftpget URL'.
Packit Service a2489d
Packit Service a2489d
Q: What is the %2F in ftp URL's?
Packit Service a2489d
A: RFC1738 specifies that clients handling ftp URL's should interpret them
Packit Service a2489d
   as HOME relative by default. %2F stands for leading slash pointing to
Packit Service a2489d
   the root directory.
Packit Service a2489d
Packit Service a2489d
Q: Why do the secure protocols https and ftps give the "PRNG not seeded" error
Packit Service a2489d
   message?
Packit Service a2489d
A: Your system probably lacks a /dev/random-like device. Create a ~/.rnd file
Packit Service a2489d
   containing random characters and SSL will work. See also the OpenSSL FAQ
Packit Service a2489d
   about this.
Packit Service a2489d
Packit Service a2489d
Q: Why does lftp say that locking fails all the time? (on linux)
Packit Service a2489d
A: You have compiled lftp with large file support (>2G) but your kernel
Packit Service a2489d
   does not support 64-bit file-locking. Either install a better kernel
Packit Service a2489d
   (e.g. linux-2.4.x) or compile lftp without large file support
Packit Service a2489d
   (configure --disable-largefile)
Packit Service a2489d
Packit Service a2489d
Q: Where is lls?
Packit Service a2489d
A: !ls
Packit Service a2489d
Packit Service a2489d
Q: Why doesn't `mirror' download files starting with a dot (or re-uploads
Packit Service a2489d
   them all the time)? I can see the files on the server using `ls -a'.
Packit Service a2489d
A: Try `set ftp:list-options -a'.
Packit Service a2489d
Packit Service a2489d
Q: ^Z doesn't work in Cygwin.
Packit Service a2489d
A: Use "SET CYGWIN=TTY".  This must be done before starting a shell, if any.
Packit Service a2489d
Packit Service a2489d
Q: lftp consumes 100% CPU on MacOS X Tiger just waiting at the command prompt.
Packit Service a2489d
A: See http://www.mail-archive.com/lftp%40uniyar.ac.ru/msg02101.html for
Packit Service a2489d
   a workaround for MacOS X bug.
Packit Service a2489d
Packit Service a2489d
Q: lftp hangs in "Making data connection" state.
Packit Service a2489d
A: Try "set ftp:prefer-epsv no". Probably a router on the path to the server
Packit Service a2489d
   does not recognize the EPSV command.
Packit Service a2489d
Packit Service a2489d
Q: ssl:key-file setting is not applied to sftp and fish connections.
Packit Service a2489d
A: Use sftp:connect-program and fish:connect-program settings instead, e.g.:
Packit Service a2489d
   "ssh -a -x -i path-to-key-file"