1. 安装带MySQL支持的proftpd:USE="mysql" emerge proftpd2. 建立数据库:create database ftp;grant all privileges on ftp.* to ftp@localhost identified by "ftp000";create table `users` ( usrname varchar(255) not null, passwd varchar(255) not null, uid int unsigned default null, gid int unsigned  […]