Resetting a user's password in Ubuntu - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-11-29T20:04:22Zhttp://stackoverflow.com/feeds/question/200014http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/200014/resetting-a-users-password-in-ubuntu1Resetting a user's password in Ubuntu [closed]Alan2008-10-14T04:29:47Z2008-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#2000172Answer by Greg Hewgill for Resetting a user's password in UbuntuGreg Hewgill2008-10-14T04:31:16Z2008-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#2000191Answer by Andrew for Resetting a user's password in UbuntuAndrew2008-10-14T04:31:32Z2008-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#2000212Answer by Nelson LaQuet for Resetting a user's password in UbuntuNelson LaQuet2008-10-14T04:31:51Z2008-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>