vote up 1 vote down star

I've grokked Unix for years (20), and I certainly feel comfortable in the shell/vi.

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.

How do I reset foobar's password?

EDIT: thanks! that was a real doh! I feel like:

homer simpson

flag

22% accept rate

closed as not programming related by Matt Hamilton Oct 14 '08 at 4:35

3 Answers

vote up 2 vote down check
sudo passwd foobar

Type in root's password when prompted.

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:

sudo su

To open a new terminal session as root.

:)

link|flag
er, that will prompt you for your password, not for root's (recent versions of sudo tell you whose password they want, not sure what version is in that version of ubuntu) – Mark Baker Oct 16 '08 at 17:00
vote up 1 vote down

Is this a trick question? "passwd foobar" as root should work.

link|flag
vote up 2 vote down

As root,

passwd foobar

If you run passwd as root, you will not be asked for foobar's previous password.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.