在Ubuntu中,systemd是默认的初始化系统。您可以通过以下步骤检查systemd的安装情况,并了解如何使用它:
systemctl --version
如果系统中已安装systemd,则会显示系统中安装的systemd版本信息。
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]
sudo systemctl enable apache2
要查看Apache2服务的状态,可以运行以下命令:
sudo systemctl status apache2
/etc/systemd/system/
目录下。然后使用systemctl
命令来管理这个自定义服务。这些是在Ubuntu中安装和使用systemd的基本步骤。希望这可以帮助您更好地理解如何使用systemd来管理系统服务。