Jump to content
Compatible Support Forums
Sign in to follow this  
jarves

recover my root password

Recommended Posts

is there any way to recover my root password in case i get lock out, ot forgot the root password???

Share this post


Link to post

gidday jarves

 

You basically have to gain access to your machine somehow to alter the respective files. A pretty convenient way is to use the bootable installation CDs of some Linux distro and launch some "recovery console". If you can't see some comand like that you might try the ALT+F1..Fx keystroke to maybe get a clear console.

 

Once you have managed to get into a shell you need to mount the partition that holds your /etc directory. To reset the root password open the file /etc/passwd and look for a line starting with ...

 

root:x:.........

 

Delete the "x" in this line as it tells that the password is shadowed. Save the file.

 

Secondly open /etc/shadow and search for the entry for the user "root". This one usually looks like this ...

 

root:$s0m3fR1g9InMD5h45H:<numbers>:<more numbers>::::

 

Delete all values (the stuff between the columns) so that you get a line like this ...

 

root::::::::

 

Save the file, unmount the partitions and reboot. The root-account should not have set a password now, which you should change immediately again.

 

hope that helps

Share this post


Link to post

Excellent instructions blackpage! I had to do this on my brother in law's laptop just a few weeks ago. What you wrote here is exactly what I did to the letter! smile

Share this post


Link to post

Thanx DapperDan for the kind words. To be honest: A couple of months ago I did a lot of test-installs and with most of them I fooled around with the accounts as I never planned to use the setup "for real"; til one day when I had to do some tricky postgres-stored-procedure fun on a production machine. I knew I had already done that on one of the test machines, alas, I didn't recall the root-password smile

 

So a little search on the net made me dig up the above procedure. Quite slick and precise. My thanx therefore goes out to the unknown author of this, from whom I shamelessly leeched the knowledge smile

Share this post


Link to post

TIMTOWTDI - there is more than one way to do it

 

here's another way for when you know the system is still OK but you didn't arrive

with boot/rescue disc in hand:

 

1. boot with parameter "init=/bin/bash"

 

2. the disks will be mounted read-only (ready for fsck), so remount the ones

you need to write to as read-write.

( for me, it's: "mount -o remount,rw /dev/sda2 /" )

 

3. change any account pwd you want: "passwd root" or "passwd user12"

 

4. "sync" ( for purists, it's: "sync;sync;sync" )

 

5. CTRL-ALT-DEL

 

done! 8)

 

Share this post


Link to post

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×