当前位置 博文首页 > 青岛Linux运维:Linux基础学习-命令行与图形界面切换

    青岛Linux运维:Linux基础学习-命令行与图形界面切换

    作者:[db:作者] 时间:2021-09-15 22:25

    命令行模式和图形界面模式切换

    打开文件 vim /etc/inittab

    # 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

    打开终端输入以下命令

    [root@qdlinux src]# systemctl get-default 
    graphical.target
    [root@qdlinux src]# systemctl set-default multi-user.target
    Removed symlink /etc/systemd/system/default.target.
    Created symlink from /etc/systemd/system/default.target to /usr/lib/systemd/system/multi-user.target.
    [root@qdlinux src]# systemctl get-default 
    multi-user.target
    [root@qdlinux src]# 
    

    查看当前运行级别

    [root@qdlinux src]# runlevel 
    N 5
    cs
    下一篇:没有了