运行级别
运行级别就是系统当前运行的环境
init 0(关机) 1(单用户模式) 2(没用) 3(字符界面) 4(没用) 5(图形界面) 6(重启)
查看当前的运行级别
systemctl get-default
设置默认的运行级别
systemctl set-default graphical.target (多用户图形界面)
systemd
为系统启动和管理相关服务
systemctl start 启动
systemctl stop 停止
systemctl restart 重启
systemctl reload 重新加载配置
systemctl status 查看服务运行状态
systemctl is-active 查看服务是否在运行中
systemctl mask 禁止服务运行
systemctl unmask 取消禁止服务运行
当我们通过sysytemctl status查看此进程的状态
状态 描述
loaded 服务单元的配置文件已经被处理
active(running) 服务持续运行
active(exited) 服务成功完成一次的配置
active(waiting) 服务已经运行但在等待某个事件
inactive 服务没有在运行
enabled 服务设定为开机运行
disabled 服务设定为开机不运行
static 服务开机不启动,但可以被其他服务调用启动
systemctl enable 开机自动启动
systemctl disable 开机不自动启动