博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Centos7.x破解密码
阅读量:5265 次
发布时间:2019-06-14

本文共 1012 字,大约阅读时间需要 3 分钟。

Centos7.x破解密码

重置Centos 7 Root密码的方式和Centos 6完全不同。让我来展示一下到底如何操作。

1 .在启动grub菜单,选择编辑选项启动

 

enter description here
1490320257799.jpg

 

2 . 按键盘e键,来进入编辑界面

 

enter description here
1490320312313.jpg

 

3 .找到Linux 16的那一行,将ro改为rw init=/sysroot/bin/sh

 

enter description here
1490320342770.jpg

 

4.现在按下 Control+x ,使用单用户模式启动

 

enter description here
1490320409353.jpg

 

5 . 现在,可以使用下面的命令访问系统

chroot /sysroot

6 . 重置密码

passwd root

7 .更新系统信息

touch /.autorelabel

8 . 退出chroot

exi

9 . 重启你的系统

reboot

就是这样!下面给出截图。

 

enter description here
1490320617147.jpg

 

通过以上步骤就可以重置CentOS 7的Root密码了,谢谢阅读,希望能帮到大家,

 

1>.破解CentOS7 的root口令方法一

        启动时任意键暂停启动
        按e键进入编辑模式
        将光标移动到linux16开始的行,添加内核参数rd.break
        按Ctrl-x启动
        mount -o remount,rw /sysroot
        chroot /sysroot
        passwd root
        touch /.autorelabel
        exit

        reboot 

 

  2>.破解CentOS7的root口令方法二

        启动时任意键暂停启动
        按e键进入编辑模式
        将光标移动到linux16开始的行,改为rw init=/sysroot/bin/sh
        按Ctrl-x启动
        chroot /sysroot 
        passwd root
        touch /.autorelabel         # (如果你系统没有开启selinux,那么可以不做这一步)
        exit 
        reboot 
        
        备注:1. touch /.autorelabel    因为在此情況下,SELinux 並沒有启动,对所有文件的更改,可能会造成文档的context(安全上下文)不正确,为确保开机时重新设定SELinux context,必須在根目录下添加隐藏文件.autorelabel。

转载于:https://www.cnblogs.com/luckyall/p/6609915.html

你可能感兴趣的文章
Struts框架----进度1
查看>>
Round B APAC Test 2017
查看>>
MySQL 字符编码问题详细解释
查看>>
Ubuntu下面安装eclipse for c++
查看>>
让IE浏览器支持CSS3圆角属性的方法
查看>>
巡风源码阅读与分析---nascan.py
查看>>
LiveBinding应用 dataBind 数据绑定
查看>>
Linux重定向: > 和 &> 区别
查看>>
nginx修改内核参数
查看>>
C 筛选法找素数
查看>>
TCP为什么需要3次握手与4次挥手(转载)
查看>>
IOC容器
查看>>
Windows 2003全面优化
查看>>
URAL 1002 Phone Numbers(KMP+最短路orDP)
查看>>
web_day4_css_宽度
查看>>
electron入门心得
查看>>
格而知之2:UIView的autoresizingMask属性探究
查看>>
我的Hook学习笔记
查看>>
js中的try/catch
查看>>
寄Android开发Gradle你需要知道的知识
查看>>