Ubuntu Account Creation
To create a new user account in Ubuntu, replace new_user with the username you want to add in the follow commands. sudo -i An interactive root session avoids a lot of sudo prefixes. adduser new_user will create the user account, prompting you for user details and a password. usermod -a -G www-data new_user will add them to the www-data…