I'm trying to reset the password to the base administrative/main account on my Ubuntu system. In the recovery shell, I will type passwd <user>
and it will give me an error output saying that user <user>
does not exist.
I have verified that the user does indeed exist in the system via
cat /etc/passwd | grep USERNAME
What could the issue be that it cannot find the user in question?
passwd <user>
? – TheOdd Oct 13 '16 at 16:51<user>
? – TheOdd Oct 13 '16 at 16:58CAT ABUSE !!!!
- http://www.dslreports.com/forum/r21664624-Do-You-Abuse-the-cat - post the output ofgrep USERNAME /etc/password
cat | grep
is poor form, lol. Also outputls /home
and the exact command you ran and error message. Simply stating it is not working is not helping us to solve your problem. – Panther Oct 13 '16 at 17:05