Create the user named user1, user2, user3
Answer and Explanation:
useradd user1
useradd user2
useradd user3
passwd user1
passwd user2
passwd user3
We create the user using useradd command and we change the password of user using passwd command. If you want to set the blank password use: passwd -d username.
Submit