Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Write an article for LinuxForums Today! Win Great Prizes!
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > Linux Resources > Linux Tutorials, HOWTO's & Reference Material > HowTo: Recover Root (and user) Password

Forgot Password?
 Linux Tutorials, HOWTO's & Reference Material   A useful collection of tutorials, guides and reviews compiled here for easy reference purposes.

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds
Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
 
Thread Tools Display Modes
Old 01-30-2006   #1 (permalink)
Super Moderator
 
Join Date: May 2004
Location: Arch Linux
Posts: 12,685
Lightbulb HowTo: Recover Root (and user) Password

It is recommended that you print out these instructions if you intend to use them without access to a computer where you can read them directly from this site.



Reset Root Password - Easy Method:

Probably the simplest way to solve a forgotten root password problem is to boot your system in the single-user mode.

For LILO users:

If you are using LILO, at the LILO boot prompt (graphical LILO users can press Ctrl-x to exit the graphical screen and go to the boot: prompt), and then enter:

Code:
linux single
This will make you the "root" user without asking for a password. Once the system has booted, you can change the root password using the password command:

Code:
passwd
For GRUB users:

boot machine
when the GRUB menu appears, use arrow keys to choose OS to be booted
press letter "e'' on the keyboard to enter edit mode
use arrow keys to select the kernel line for kernel to be booted
press "e" to edit line
go to end of line and type "single" (without quotes) as a separate word
press ESC key to exit the edit mode
press "b" to boot into single user mode



Reset Root Password - Not As Easy Method:

If the easy method doesn't work on your machine, another way to solve the "lost root password" problem is to boot your computer from your Linux Installation CD/DVD, or from a live-CD/DVD such as Knoppix.

Boot with the live-disk then go to a terminal and su to root (no password is required) then issue the following commands (be sure to replace each /sda1 with your own root partition device):

Code:
mount -o dev,rw /mnt/sda1
	
cd /mnt/sda1/etc
Once you are into your system /etc directory, you can use a text editor (vim, nano, pico, etc.) to edit the /etc/shadow file where the password is stored. Various information about root and user accounts is kept in this plain-text file but we are only concerned with the password portion.

For example, the /etc/shadow entry for the "root" account may look something like this:

Code:
root:$1$aB7mx0Licb$CTbs2RQrfPHkz5Vna0.fnz8H68tB.:10852:0:99999:7:::
Now, using your favorite editor (I'll use vim) delete the password hash. For this example, the password is in green text and is all those characters between the 1st and 2nd colons.

Code:
vim shadow
After you've edited this field, it should look like this:

Code:
root::10852:0:99999:7:::
Now save the file and change back to the root directory and unmount the system root partition (don't forget to change the /sda1) as follows:

Code:
cd /
umount /mnt/sda1
Now reboot the computer.

Once the computer has booted and you're at the login prompt, type "root" and when asked for the password just press ENTER (entering no password). After a successful login, you need to set the new password for root using the following command:

Code:
passwd

Note that I've tested both the above methods on my machines but please keep in mind that neither of them will work on every machine.



Reset Forgotten or Lost "User" Password:

If a regular user forgets his/her password, the root user can easily reset the user's password. For this example, the username will be "bob".

Enter (as root):

Code:
passwd bob
This will prompt for a new password for the user "bob".

====================================

Hopefully, this HowTo will serve as a good reminder of the old saying that "anyone having physical access to a machine owns that machine". Please feel free to post any additions and/or corrections and I'll be happy to add them to the HowTo.

Thanks!

ozar

Last edited by ozar; 12-03-2008 at 07:38 PM.. Reason: edit section titles
ozar is offline  



Old 01-30-2006   #2 (permalink)
Linux Guru
 
AlexK's Avatar
 
Join Date: Feb 2005
Location: Earth
Posts: 3,380
ozar, good howto, there is another method which can be used to change the root password without editing /etc/shadow file.

Boot from a livecd as normal.
Mount the linux partition in rw mode e.g. mount -o rw /dev/hda1 /mnt/hda1
In terminal become root i.e. su -
Chroot into the partition i.e. : chroot /mnt/hda1 /bin/bash
then change password with passwd command i.e. passwd

this will change the entry in /etc/shadow for the root password.
__________________
Life is complex, it has a real part and an imaginary part.
AlexK is offline  
Old 01-30-2006   #3 (permalink)
Super Moderator
 
Join Date: May 2004
Location: Arch Linux
Posts: 12,685
Hi, Alex

Yeah, I've used that method (or a similar one) in the past, but to be honest, I couldn't remember how I did it so didn't include it in the howto.

Thanks for submitting it because neither of the first two options will work for every machine, but the third option might be just the fix for someone.
ozar is offline  
Old 01-30-2006   #4 (permalink)
Linux Enthusiast
 
Join Date: Aug 2005
Location: Hell
Posts: 514
For GRUB, to enter single-user mode you press the "A" key for append mode, and then add " single" to the end of the line.
spoon! is offline  
Old 06-09-2008   #5 (permalink)
Linux Guru
 
Jonathan183's Avatar
 
Join Date: Oct 2007
Posts: 2,445
OK ... try at grub menu, select first entry and add init=/bin/bash to the kernel line and boot the system. This should drop you at a bash shell where you can type passwd and set the root password. Once you have done this reboot the system using reboot ... let us know how it goes

Ed: this method works for openSUSE 10.3 ... single user mode still prompts for the root password ... ozar could this method be added to the how-to as its still a relatively easy method ?

Moderator Edit: Done

Last edited by ozar; 06-20-2008 at 11:40 PM.. Reason: copied post to this thread
Jonathan183 is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 01:30 PM.






© 2000 - - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.1