centos7重置系统命令
时间: 2023-12-04 17:41:48 浏览: 847
centos命令
4星 · 用户满意度95%
以下是CentOS 7重置root密码的步骤:
1. 重启并进入grub界面,按下“e”键进入编辑模式。
2. 找到以“linux16”开头的行,将“ro”改为“rw”,在“quiet”后面添加“systemd.unit=rescue.target”或“systemd.unit=emergency.target”(不同的版本可能有所不同)。
3. 按下“Ctrl+X”或“F10”键启动系统。
4. 进入单用户模式,输入命令“chroot /sysroot”。
5. 输入命令“passwd root”并按照提示输入新密码。
6. 输入命令“touch /.autorelabel”以重新标记SELinux上下文。
7. 输入命令“exit”并重启系统。
另外,如果您想下载阿里云的yum源,可以按照以下步骤进行:
1. 使用wget命令下载CentOS-Base.repo文件:`wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo`
2. 备份原有的CentOS-Base.repo文件:`mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup`
3. 运行yum makecache命令更新缓存:`yum makecache`
阅读全文