当前位置: 技术问答>linux和unix
how to get my password?help!!!!Thanks!!!
来源: 互联网 发布时间:2015-06-27
本文导语: 我安装redhat时,没有添加用户。 只用root用户。 现在忘记密码了,请问各位! 我怎么样才能取得密码!!重新登录! 步骤详细点,谢谢!!!! | 找回忘记了的root口令(lilo/grub) 三种办法...
我安装redhat时,没有添加用户。
只用root用户。
现在忘记密码了,请问各位!
我怎么样才能取得密码!!重新登录!
步骤详细点,谢谢!!!!
只用root用户。
现在忘记密码了,请问各位!
我怎么样才能取得密码!!重新登录!
步骤详细点,谢谢!!!!
|
找回忘记了的root口令(lilo/grub)
三种办法:
1.在系统进入单用户状态,直接用passwd root去更改
2.用安装光盘引导系统,进行linux rescue状态,将原来/分区挂接上来,作法如下:
cd /mnt
mkdir hd
mount -t auto /dev/hdaX(原来/分区所在的分区号) hd
cd hd
chroot ./
passwd root
这样可以搞定
3.将本机的硬盘拿下来,挂到其他的linux系统上,采用的办法与第二种相同
rh8中
一. lilo
1. 在出现 lilo: 提示时键入 linux single
画面显示 lilo: linux single
2. 回车可直接进入linux命令行
3. #vi /etc/shadow
将第一行,即以root开头的一行中root:后和下一个:前的内容删除,
第一行将类似于
root::......
保存
4. #reboot重启,root密码为空
二. grub
1. 在出现grub画面时,用上下键选中你平时启动linux的那一项(别选dos哟),然后按e键
2. 再次用上下键选中你平时启动linux的那一项(类似于kernel /boot/vmlinuz-2.4.18-14 ro root=LABEL=/),然后按e键
3. 修改你现在见到的命令行,加入single,结果如下:
kernel /boot/vmlinuz-2.4.18-14 single ro root=LABEL=/
4. 回车返回,然后按b键启动,即可直接进入linux命令行
5. #vi /etc/shadow
将第一行,即以root开头的一行中root:后和下一个:前的内容删除,
第一行将类似于
root::......
保存
6. #reboot重启,root密码为空
三种办法:
1.在系统进入单用户状态,直接用passwd root去更改
2.用安装光盘引导系统,进行linux rescue状态,将原来/分区挂接上来,作法如下:
cd /mnt
mkdir hd
mount -t auto /dev/hdaX(原来/分区所在的分区号) hd
cd hd
chroot ./
passwd root
这样可以搞定
3.将本机的硬盘拿下来,挂到其他的linux系统上,采用的办法与第二种相同
rh8中
一. lilo
1. 在出现 lilo: 提示时键入 linux single
画面显示 lilo: linux single
2. 回车可直接进入linux命令行
3. #vi /etc/shadow
将第一行,即以root开头的一行中root:后和下一个:前的内容删除,
第一行将类似于
root::......
保存
4. #reboot重启,root密码为空
二. grub
1. 在出现grub画面时,用上下键选中你平时启动linux的那一项(别选dos哟),然后按e键
2. 再次用上下键选中你平时启动linux的那一项(类似于kernel /boot/vmlinuz-2.4.18-14 ro root=LABEL=/),然后按e键
3. 修改你现在见到的命令行,加入single,结果如下:
kernel /boot/vmlinuz-2.4.18-14 single ro root=LABEL=/
4. 回车返回,然后按b键启动,即可直接进入linux命令行
5. #vi /etc/shadow
将第一行,即以root开头的一行中root:后和下一个:前的内容删除,
第一行将类似于
root::......
保存
6. #reboot重启,root密码为空
|
You can log in using single-user mode and create a new root password.
To enter single-user mode, reboot your computer. If you use the default bootloader, GRUB, you can enter single user mode by performing the following:
At the bootloader menu, type [e] to enter into editing mode.
You will be presented with a boot entry listing. Look for the line that looks similar to the following:
kernel /vmlinuz-2.4.18-0.4 ro root=/dev/hda2
Press the arrow key until this line is highlighted and press [e].
You can now add the word single once space after the end of the text to tell GRUB to boot into single-user Linux mode. Press [Enter] to make the editing change take effect.
You will be brought back to the edit mode screen. From here, press [b] and GRUB will boot single-user Linux mode. After it finishes loading, you will be presented with a shell prompt.
You can now change the root password by typing
passwd root
To enter single-user mode, reboot your computer. If you use the default bootloader, GRUB, you can enter single user mode by performing the following:
At the bootloader menu, type [e] to enter into editing mode.
You will be presented with a boot entry listing. Look for the line that looks similar to the following:
kernel /vmlinuz-2.4.18-0.4 ro root=/dev/hda2
Press the arrow key until this line is highlighted and press [e].
You can now add the word single once space after the end of the text to tell GRUB to boot into single-user Linux mode. Press [Enter] to make the editing change take effect.
You will be brought back to the edit mode screen. From here, press [b] and GRUB will boot single-user Linux mode. After it finishes loading, you will be presented with a shell prompt.
You can now change the root password by typing
passwd root
|
hehe,,,,不多说了
|
up