$ groupadd ftpusers #建立用户级ftpuserside
第二步:建立用户目录\用户\密码,输入命令: $ mkdir /www/ #建立目录www
$ chmod -R 777 /www/ #设置权限,好像必须777
$ useradd -d /www/ -g ftpusers -s /sbin/nologin ftp1 #增长用户ftp1
$ passwd ftp1 #修改用户名ftp1的密码spa
vi /opt/lampp/etc/proftpd.conf #打开proftpd配置文件proftpd.conform
修改内容:/opt/lampp/lampp reloadftp #重启proftpdblog
附:若是链接FTP时速度慢,请在proftpd配置文件proftpd.conf 中加入如下内容: # Slow logins # This is probably caused by a firewall or DNS timeout. By default ProFTPD will try to do both DNS and ident lookups against the # incoming connection. If these are blocked or excessively delayed a slower than normal login will result. To turn off DNS and ident # use: UseReverseDNS off IdentLookups off