💾 Archived View for technicalsuwako.moe › blog › runit-for-systemd-user.gmi captured on 2023-09-28 at 15:57:41. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-06-14)

-=-=-=-=-=-=-

ブログ一覧へ

【Linux】systemdユーザー向けrunit使い方

投稿日:2022-09-08

|             コマンド             |                        runit                        |                  systemd                 |
| -------------------------------- | --------------------------------------------------- | -----------------------------------------|
| サービスの有効化                 | ln -s /etc/runit/sv/<サービス名> /run/runit/service | systemctl enable <サービス名>            |
| サービスの無効化                 | rm /run/runit/service/<サービス名>                  | systemctl disable <サービス名>           |
| サービスの起動                   | sv start <サービス名>                               | systemctl start <サービス名>             |
| サービスの終了                   | sv stop <サービス名>                                | systemctl stop <サービス名>              |
| サービスの再起動                 | sv restart <サービス名>                             | systemctl restart <サービス名>           |
| サービスの状況の確認             | sv status <サービス名>                              | systemctl status <サービス名>            |
| サービスの有効済みスクリプト一覧 | ls -thal /run/runit/service                         | systemctl list-unit-files --type=service |