Pureftpd-安装文档(基于puredb认证)
下载 wget -c --no-check-certificate https://download.pureftpd.org/pub/pure-ftpd/releases/pure-ftpd-1.0.42.tar.gz 编译安装 # 依赖包 yum -y install openssl-devel.x86_64 useradd -M -s /bin/false ftp tar xzf pure-ftpd-1.0.42.tar.gz && cd pure-ftpd-1.0.42 ./configure --prefix=/usr/local/pureftpd --with-puredb --with-altlog --without-shadow --with-quotas \ --with-cookie --with-virtualchroot --with-language=english --with-rfc2640 --with-peruserlimits --with-tls make install-strip 生成配置文件 # 配置文件 install -o root -g root -m 500 -d /usr/local/pureftpd/etc install -o……