在以往某些版本(比如2003年的Redhat 9 (Shrike)),要想让Linux启动后默认进入键盘命令界面需要在“/etc/inittab”文件中修改
id:5:initdefault:
为
id:3:initdefault:
但许多新的Linux发行版已经“使用targets代替了runlevels”:
上图为“/etc/inittab”文件内容,文件默认已经没有了未被注释的“id:5:initdefault:”,并说明了“在此添加的配置不会对系统产生任何影响”。
# systemd uses 'targets' instead of runlevels. By default, there are two main targets:
#
# multi-user.target: analogous to runlevel 3
# graphical.target: analogous to runlevel 5
#
# To view current default target, run:
# systemctl get-default
#
# To set a default target, run:
# systemctl set-default TARGET.target
从上面的内容可以知道,使用命令 systemctl get-default
来查看当前默认的target,使用systemctl set-default TARGET.target
来设置target,可选的target有multi-user.target和graphical.target,对应之前运行级别3和5。
在root用户下或使用root权限执行上述命令,会看到如下提示:
Removed /etc/systemd/system/default.target.
Created symlink /etc/systemd/system/default.target → /usr/lib/systemd/system/multi-user.target.