recover my root password

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

Everything Linux 1798 This topic was started by ,



data/avatar/default/avatar26.webp

151 Posts
Location -
Joined 2003-12-23
is there any way to recover my root password in case i get lock out, ot forgot the root password???

Participate on our website and join the conversation

You have already an account on our website? Use the link below to login.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic



data/avatar/default/avatar01.webp

120 Posts
Location -
Joined 2004-03-23
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


data/avatar/default/avatar04.webp

1678 Posts
Location -
Joined 2003-09-27
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!


data/avatar/default/avatar01.webp

120 Posts
Location -
Joined 2004-03-23
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
 
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


data/avatar/default/avatar39.webp

336 Posts
Location -
Joined 2004-07-09
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)