Linux Rescue
RedHat
Reset the root's password
For GRUB Bootloader)
系統重開機 -> 進入開機選單
- 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 wordSingle
) 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:
mount -t proc proc /proc
mount -o remount,rw /
passwd
sync
reboot