hmm
Then we create an ftp group (ftpgroup) and user (ftpuser) that all our virtual users will be mapped to. Replace the group- and userid 2001 with a number that is free on your system:
so i change this
groupadd -g 2001 ftpgroup
useradd -u 2001 -s /bin/false -d /bin/null -c "pureftpd user" -g ftpgroup ftpuser
To This
groupadd -g 2002 ftpgroup
useradd -u 2002 -s /bin/false -d /bin/null -c friso -g ftpgroup ftpuser
or how should i change it...
|