what is the default password when you create new user in ubuntu?
By Emma Valentine •
I have created a new user by using useradd command e.g.:
sudo useradd acreddyThen new user is created but it is asking for a password what is the password?
42 Answers
You need to set a password for the user. Use the passwd command:
Usage: passwd [options] [LOGIN]
So if you want to set a password for the new user, you type in:
sudo passwd acreddy and you're good.
If you don't want to set password, you can do it by
passwd -d username