Resetting a user's password in Ubuntu - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-11-29T20:04:22Z http://stackoverflow.com/feeds/question/200014 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/200014/resetting-a-users-password-in-ubuntu 1 Resetting a user's password in Ubuntu [closed] Alan 2008-10-14T04:29:47Z 2008-10-14T11:28:15Z <p>I've grokked Unix for years (20), and I certainly feel comfortable in the shell/vi.</p> <p>Unfortunately, I've stumbled into a WTF. I created a new user (foobar) on the Ubuntu 7.1 environment of VPS, but I've forgotten the password. Therefore, when I execute 'passwd', I cannot be authenticated as 'foobar'. I do know how to become root since that password has not changed.</p> <p>How do I reset foobar's password?</p> <p>EDIT: thanks! that was a real doh! I feel like:</p> <p><img src="http://neatorama.cachefly.net/images/2008-01/homer-simpson-brain-mri.jpg" alt="homer simpson" /></p> http://stackoverflow.com/questions/200014/resetting-a-users-password-in-ubuntu/200017#200017 2 Answer by Greg Hewgill for Resetting a user's password in Ubuntu Greg Hewgill 2008-10-14T04:31:16Z 2008-10-14T04:31:16Z <p>As root,</p> <pre><code>passwd foobar </code></pre> <p>If you run <code>passwd</code> as root, you will not be asked for foobar's previous password.</p> http://stackoverflow.com/questions/200014/resetting-a-users-password-in-ubuntu/200019#200019 1 Answer by Andrew for Resetting a user's password in Ubuntu Andrew 2008-10-14T04:31:32Z 2008-10-14T04:31:32Z <p>Is this a trick question? "passwd foobar" as root should work.</p> http://stackoverflow.com/questions/200014/resetting-a-users-password-in-ubuntu/200021#200021 2 Answer by Nelson LaQuet for Resetting a user's password in Ubuntu Nelson LaQuet 2008-10-14T04:31:51Z 2008-10-14T04:31:51Z <pre><code>sudo passwd foobar </code></pre> <p>Type in root's password when prompted.</p> <p>The reason is ubuntu dose not log you in as root by default. You have to 'elevate' yourself to root by using the sudo command. You could use:</p> <pre><code>sudo su </code></pre> <p>To open a new terminal session as root.</p> <p>:)</p>