您的位置:首页 > 运维架构 > Linux

我忘记了Linux系统的密码,该怎么做?

2012-05-27 00:01 951 查看

我忘记了Linux系统的密码,该怎么做?

简单的回答,就是使系统进入单用户模式,或者叫安全模式。

详细的回答,就是介绍如何进入单用户模式。
http://www.cyberciti.biz/faq/linux-reset-forgotten-root-password/

My boot loader is GRUB (see
LILO boot loader below)

)Following is the procedure to reset root password if you are using GRUB as a boot loader:

Select the kernel
Press the e key to edit the entry
Select second line (the line starting with the word kernel)
Press the e key to edit kernel entry so that you can append single user mode
Append the letter S (or word Single) to the end of the (kernel) line
Press ENTER key
Now press the b key to boot the Linux kernel into single user mode
At prompt type passwd command to reset password:
You need to mount at least / and other partitions:
# mount -t proc proc /proc

# mount -o remount,rw /


Change the root password, enter:
# passwd


Finally reboot system:
# sync

# reboot


My boot loader is LILO

At LILO boot loader type linux single and press [ENTER] key:
Boot: linux single


When you get the # prompt you will need to type passwd root to reset password:
# passwd


Reboot system:
# sync

# reboot
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  linux system command user