It says at least 6 characters. I want to change to easy input. How to change password of user to very simple like one character 'w' ? Thanks
Asked
Active
Viewed 236 times
0
1 Answers
2
run sudo passwd $USER
in a terminal, replace $USER
with the username you want to set the password for.
$USER
is the same as the current user if you don't want to type your own name.
Be warned , if you use sudo to change your password you will break encryption of your home directory if you are using encryption.

guntbert
- 13,134

GM-Script-Writer-62850
- 2,127
- 17
- 12
sudo passwd $user
. Be warned , if you use sudo to change your password you will break encryption of your home directory if you are using encryption. – Panther Apr 26 '13 at 16:13