Posts

Showing posts with the label lftp

FreeBSD(9.2) - PureFTPd

Installing from binary package : If you don't need to use SSL, you can install it from binary package: root@freebsd:~ # pkg install pure-ftpd If you need to use SSL, you have to install it from ports, because the package is not compiled with SSL support: root@freebsd:~ # /usr/local/sbin/pure-ftpd -g/var/run/pure-ftpd.pid -A -c50 -B -C8 -D -E -fftp -H -I15 -lpuredb:/usr/local/etc/pureftpd.pdb -L10000:8 -m4 -p30000:50000 -s -U113:002 -u100 -k99 -Z -Y2 -4 pure-ftpd: invalid option -- Y pure-ftpd: invalid option -- 2 root@freebsd:~ # ldd /usr/local/sbin/pure-ftpd /usr/local/sbin/pure-ftpd:         libcrypt.so.5 => /lib/libcrypt.so.5 (0x801239000)         libpam.so.5 => /usr/lib/libpam.so.5 (0x801458000)         libc.so.7 => /lib/libc.so.7 (0x80081b000) Installing from ports :   Go to the pure-ftpd directory from the ports tree and tun "make install". Don't...