linux系统的三大密码!!!!!!
1、Grub密码
2、进入操作系统所使用的密码
3、root用户密码
①、修改操作系统要求最小密码长度,配置文件/etc/login.defs中的 'PASS_MIN_LEN 0'
②、设置用户密码为空命令:
[root@localhost ~]# passwd -d root
Removing password for user root.
passwd: Success
[root@localhost ~]#
#linux系统中/etc/grub.conf文件片段:
default=0
timeout=5
password --md5 $1$DgnFo0$OyelZ5Gp6lyVzvz3iongk1 #Grub密码(管理员可自行添加此行)
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux Server (2.6.18-53.el5)
password --md5 $1$XPoFo0$AYIQGXzfI3e//ikkNOeBu/ #进入操作系统所使用的密码(管理员可自行添加此行)
root (hd0,0)
kernel /vmlinuz-2.6.18-53.el5 ro root=LABEL=/ rhgb quiet
initrd /initrd-2.6.18-53.el5.img
~
~
~
"/etc/grub.conf" 19L, 691C 16,1 全部
#密文生成方式:
[root@localhost ~]# grub-md5-crypt
Password:
Retype password:
$1$ThrFo0$nSY08ELyieXBVa0hejXm11
[root@localhost ~]#