2021-05-12 14:32:11
[RHCE]rhel7 root系統使用者密碼修改
2020-06-16 17:44:16
rhel7 root 使用者密碼破解
-
進入grub 編輯當前kernel版本選單欄,在linux6 最後新增 rd.break引數
linux16 /vmlinuz-3.10.0-327.el7.x86_64 root=/dev/mapper/rhel-root ro rd.lvm.lv=rhel/root rd.lvm.lv=rhel/swap rhgb quiet rd.break
-
使用 ctrl+x 重新引導系統啟動
-
重新掛載‘根’檔案系統,並切換進入/sysroot
mount -oremount,rw /sysroot chroot /sysroot
-
修改root 使用者密碼
echo "RedHat" | passwd --stdin root
-
建立 /.autorelabel 檔案,跳過selinux 認證
touch /.autorelabel
grub 組態檔加密
使用grub2-mkpasswd-pbkdf2 命令新增grub 秘鑰認證。
[root@desk1 ~]# grub2-mkpasswd-pbkdf2 Enter password: Reenter password: PBKDF2 hash of your password is grub.pbkdf2.sha512.10000.02A9678D83F863EFAEAAD08E9280D74B5D559577A4D3B652C633053315266B5E883B626413664CAA835A7CDD2A5239ED6CB82D7AEA74127143685E9081E463C6.F49B8110AF0D29B0BE98322D5911824BC9F9DBB4204F71699519484FD288FDF92B58588A108AFE79479F1DB35EE60C144226DE3127F3CBBC68988786AAC69379
編輯/etc/grub.d/00_header 在檔案最後新增。注意使用者root 可以不存在於系統。
cat << EOF set superusers="root" password_pbkdf2 rootgrub.pbkdf2.sha512.10000.02A9678D83F863EFAEAAD08E9280D74B5D559577A4D3B652C633053315266B5E883B626413664CAA835A7CDD2A5239ED6CB82D7AEA74127143685E9081E463C6.F49B8110AF0D29B0BE98322D5911824BC9F9DBB4204F71699519484FD288FDF92B58588A108AFE79479F1DB35EE60C144226DE3127F3CBBC68988786AAC69379 EOF
更新grub 組態檔生效
grub2-mkconfig >> /boot/grub2/grub.cfg
本文永久更新連結地址:http://www.linuxidc.com/Linux/2016-04/129763.htm
相關文章