第八单元笔记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第八单元笔记相关的知识,希望对你有一定的参考价值。

1.systemd

系统初始化程序,系统开始的第一个进程,pid为1
技术分享
2.systemctl 命令
systemctl list-units            ##列出当前系统服务的状态
技术分享
systemctl list-unit-files       ##列出服务的开机状态
技术分享
systemctl status sshd           ##查看指定服务的状态
技术分享
systemctl stop sshd             ##关闭指定服务
技术分享
systemctl start sshd            ##开启指定服务

技术分享systemctl restart sshd          ##从新启动服务技术分享
systemctl enable sshd           ##设定指定服务开机开启
技术分享
systemctl disable sshd          ##设定指定服务开机关闭
技术分享
systemctl reload sshd           ##使指定服务从新加载配置
技术分享
systemctl list-dependencies sshd    ##查看指定服务的倚赖关系
技术分享
systemctl mask  sshd            ##冻结指定服务
systemctl unmask sshd           ##启用服务
技术分享
systemctl set-default multi-user.target ##开机不开启图形
systemctl set-default graphical.target  ##开机启动图形

技术分享


3.服务状态
systemctl   status      服务名称

loaded            ##系统服务已经初始化完成,加载过配置
active(running)     ##正有一个或多个程序正在系统中执行,
                ## vsftpd 就是這種模式
atcive(exited)     ##僅執行一次就正常結束的服務,
                # 目前並沒有任何程序在系統中執行
atcive(waiting)     ##正在執行當中,
               # 不過還再等待其他的事件才能繼續處理
inactive           ##服务关闭
enabled            ##服务开机启动
disabled           ##服务开机不自启
static             ##服务开机启动项不可被管理
failed             ##系统配置错误
 


以上是关于第八单元笔记的主要内容,如果未能解决你的问题,请参考以下文章

Python学习笔记——进阶篇第八周———CPU运行原理与多线程

读书笔记——第八,九,十章

Python 第八章笔记

第八周学习笔记

Python第八周 学习笔记

Python 学习之《Learn Python3 The Hard Way 》第八部分学习笔记