Hellooo! Let’s learn how to make a new account on a Linux Server.

The first command we’ll be using is ‘useradd’. That command allows you to make a new account.

This is how it goes:

sudo useradd test2

Now that the account username had been created. Now we have to make a password for it. To do that, we’ll use the command ‘sudo passwd (username)’ Like this:

sudo passwd test2

Then, you just type whatever password you want it to be. That’s all to making a new account.

The End.