systemd
UNIX/Linux系のdaemonなどを規則的に起動管理する機能 init などに代わって増えた? RedHat Enterprise Linux 7 以降
Debian
Ubuntu
Fedora
openSUSE
などで使われている
unitファイルを作っておくことで
start, stop, restart, status などいろいろできる
root の他 --user オプションでユーザモードもつかえる
$ systemctl enable --now <name>
$ systemctl status <name>
$ systemctl start <name>
$ systemctl stop <name>
$ systemctl restart <name>
電源管理
shutdown は今は昔
systemctl poweroff 電源断
systemctl reboot 再起動
systemctl suspend サスペンド
systemctl hibernate ハイバネーション
などがあるようだ
ReadWritePaths などで書き込みを制限できる
代替?