共计 490 个字符,预计需要花费 2 分钟才能阅读完成。
在 Debian 中,Systemd 服务管理工具是主要用来管理和控制系统服务的工具。以下是一些常用的 Systemd 服务管理命令和示例:
- 查看所有正在运行的服务:
systemctl list-units --type=service
- 启动一个服务:
sudo systemctl start [service_name]
- 停止一个服务:
sudo systemctl stop [service_name]
- 重启一个服务:
sudo systemctl restart [service_name]
- 查看一个服务的状态:
sudo systemctl status [service_name]
- 启用一个服务(系统启动时自动启动):
sudo systemctl enable [service_name]
- 禁用一个服务(系统启动时不自动启动):
sudo systemctl disable [service_name]
请注意,上述命令中的 [service_name]
应替换为实际的服务名称。可以通过 systemctl list-units --type=service
命令查看所有服务的名称。希望这些信息对您有所帮助。
丸趣 TV 网 – 提供最优质的资源集合!
正文完