CentOS7改变目标(运行级别)
时间:2014-10-20 10:01 来源:linux.it.net.cn 作者:it
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 //图形模式
开机启动进的目标是default.target,默认链接到graphical.target(大致相当于原来的运行级别5)。可以通过内核参数更改默认运行级别(见第1章)。
也可以执行systemctl命令,设置启动时默认进入文本模式或图形模式。
# systemctl -f enable multi-user.target //文字模式
# systemctl -f enable graphical.target //图形模式
(责任编辑:IT)
1.使用命令切换运行级别/目标
2.修改默认运行级别/目标 可以执行下面命令,设置启动时默认进入文本模式或图形模式。
开机启动进的目标是default.target,默认链接到graphical.target(大致相当于原来的运行级别5)。可以通过内核参数更改默认运行级别(见第1章)。 也可以执行systemctl命令,设置启动时默认进入文本模式或图形模式。
(责任编辑:IT) |