• systemd


        

    systemd-cgls 指令,根据 cgroup 将运行的进程分组来同时实现两者。 要显示您系统中的全部 cgroup 层级
    systemd-cgls


    查看 memory 资源管控器的 cgroup 树
    systemd-cgls memory
    systemd-cgls cpu
    systemd-cgls devices


    要查看按资源使用量(CPU、内存和 IO)排序的、正在运行的 cgroup 动态描述请使用: systemd-cgtop


    在systemd 上已不再使用 /etc/inittab

    cat /etc/inittab

    # Ctrl-Alt-Delete is handled by /usr/lib/systemd/system/ctrl-alt-del.target

    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

    查看当前默认的 target
    systemctl get-default
    设置默认target时 ,执行
    systemctl set-default TARGET.target

    如何查看系统是 sysvinit 还是 upstart

    strings /sbin/init | grep "sysvinit"
    strings /sbin/init | grep "upstart"


    /etc/inittab 这个只是在 upstart 启动系统的OS 上使用


    centos6: upstart initctl


    [root@test]# cat /etc/init/aliyun-service.conf
    start on runlevel S or stopping rc RUNLEVEL=[234]

    task

    script
    /usr/sbin/process_service
    end script

    关于target 的概念 

    https://www.qingheluo.com/systemdzhongtargetguanli/

    查看当前系统的所有Target:systemctl list-unit-files --type=target

    查看一个Target包含的所有 Unit:systemctl list-dependencies multi-user.target

    查看启动时的默认Target:systemctl get-default

    设置启动时的默认 Target:sudo systemctl set-default multi-user.target

  • 相关阅读:
    [模板] 循环数组的最大子段和
    [最短路][几何][牛客] [国庆集训派对1]-L-New Game
    [洛谷] P1866 编号
    1115 Counting Nodes in a BST (30 分)
    1106 Lowest Price in Supply Chain (25 分)
    1094 The Largest Generation (25 分)
    1090 Highest Price in Supply Chain (25 分)
    树的遍历
    1086 Tree Traversals Again (25 分)
    1079 Total Sales of Supply Chain (25 分 树
  • 原文地址:https://www.cnblogs.com/jkklearn/p/14012820.html
Copyright © 2020-2023  润新知