标签:请求转发 img 技术分享 bin res 常用 挂载点 block 支持
systemctl命令是系统服务管理器指令,它实际上将 service 和 chkconfig 这两个命令组合到一起。
1.命令格式:
systemctl [参数] [服务]
2.命令功能:
systemd 是 Linux 下的一款系统和服务管理器,兼容 SysV 和 LSB 的启动脚本。
3.命令参数:
start,stop,restart,status,enable,disable,is-enabled
4.使用实例:
示例1:显示所有已经激活的服务
命令:systemctl | more -5
[root@localhost sunjimeng]# systemctl | more -5 UNIT LOAD ACTIVE SUB DESCRIPTION proc-sys-fs-binfmt_misc.automount loaded active running Arbitrary Executable File Formats File System Automount Point sys-devices-pci0000:00-0000:00:07.1-ata2-host1-target1:0:0-1:0:0:0-block-sr0.device loaded active plugged --More-- [5]+ 已停止 systemctl | more -5 [root@localhost sunjimeng]# systemctl list-units |more -5 UNIT LOAD ACTIVE SUB DESCRIPTION proc-sys-fs-binfmt_misc.automount loaded active running Arbitrary Executable File Formats File System Automount Point sys-devices-pci0000:00-0000:00:07.1-ata2-host1-target1:0:0-1:0:0:0-block-sr0.device loaded active plugged --More--
示例2:显示所有已经安装的服务
命令:systemctl list-unit-files |more -5
[root@localhost sunjimeng]# systemctl list-unit-files |more -5 UNIT FILE STATE proc-sys-fs-binfmt_misc.automount static dev-hugepages.mount static dev-mqueue.mount static proc-fs-nfsd.mount static --More--
示例3:查看特定服务是否设定为开机自启
命令:systemctl is-enabled telnet.socket
[root@localhost sunjimeng]# systemctl is-enabled telnet.socket enabled [root@localhost sunjimeng]# chkconfig telnet.socket //这里不需要再加上.socket(加上之后没有反应) [root@localhost sunjimeng]# chkconfig telnet 注意:正在将请求转发到“systemctl is-enabled telnet.socket”。 enabled
5.其他:
ystemd 的特性有:
标签:请求转发 img 技术分享 bin res 常用 挂载点 block 支持
原文地址:https://www.cnblogs.com/shujuxiong/p/9012745.html