Hi,
Sorry for the nob question but what would the FreeBSD equivalent to the command bellow be?
I am trying to create a pure-ftp server following this howto
I know that
Also can I combine both command in 1 line?
Thank you
Sorry for the nob question but what would the FreeBSD equivalent to the command bellow be?
Code:
groupadd -g 2001 ftpgroup
useradd -u 2001 -s /bin/false -d /bin/null -c "pureftpd user" -g ftpgroup ftpuser
I am trying to create a pure-ftp server following this howto
I know that
useradd
become adduser
but not sure about the rest of it.Also can I combine both command in 1 line?
Thank you