今天不小心写错了 /lib/systemd/system/default.target 文件,导致 centos 一直停留在精度条哪里,无法进入命令行模式。
于是在网上搜索进入单用户模式 http://wenku.baidu.com/view/483a697203d8ce2f01662326.html
修改启动项,在 initrd16 末尾添加 init=/bin/sh, Ctrl+x 启动。
挂载根目录,使文件可写 mount -o remount,rw /
然后找到 /lib/systemd/system/default.target 文件修改。
正确的 default.target
[Unit]
Description=Graphical Interface
Documentation=man:systemd.special(7)
Requires=multi-user.target
Wants=display-manager.service
Conflicts=rescue.service rescue.target
After=multi-user.target rescue.service rescue.target display-manager.service
AllowIsolate=yes
最后 exec /sbin/init 启动到命令行模式。