Official Ubuntu Documentation 提供最新版本的使用手册,这里使用的是 Ubuntu 20.04 LTS (Focal Fossa)。
系统服务用 systemd 管理,1 号进程的程序文件 /sbin/init 是 systemd 的符号连接:
$ ls -l /sbin/init
lrwxrwxrwx 1 root root 20 Sep 8 09:58 /sbin/init -> /lib/systemd/systemd
systemd 介绍:man systemd
systemd 管理服务用命令 systemctl 操作:man systemctl
# 重启服务
sudo systemctl restart sshd
systemd 的使用见 systemd: Linux 系统服务管理。