CentOS 7 运行模式/运行级别

﹥>﹥吖頭↗ 提交于 2020-12-13 10:01:00

1.使用命令切换运行级别/目标


# systemctl isolate multi-user.target //切换到运行级别3,该命令对下次启动无影响,等价于telinit 3

# systemctl isolate runlevel3.target //切换到运行级别3,该命令对下次启动无影响,等价于telinit 3

# systemctl isolate graphical.target //切换到运行级别5,该命令对下次启动无影响,等价于telinit 5

# systemctl isolate runlevel5.target //切换到运行级别5,该命令对下次启动无影响,等价于telinit 5


2.修改默认运行级别/目标

可以执行下面命令,设置启动时默认进入文本模式或图形模式。

# ln -sf /lib/systemd/system/multi-user.target /etc/systemd/system/default.target //文字模式

# ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target //图形模式


3、也可以执行systemctl命令

设置启动时默认进入文本模式或图形模式。开机启动进的目标是default.target,默认链接到graphical.target(大致相当于原来的运行级别5)。可以通过内核参数更改默认运行级别(见第1章)。

# systemctl -f enable multi-user.target //文字模式

# systemctl -f enable graphical.target //图形模式

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!