systemctl コマンド
systemctl {enable|start|status} ユニット名systemd のユニット(service・timer など)を操作します。enable で自動起動を有効化、start で即時起動、status で状態確認を行います。timer を使う定期実行では、対応する .timer ユニットを enable して有効化します。
使用例
systemctl enable --now backup.timerbackup タイマーを有効化し、同時に起動する。systemctl status backup.timerタイマーの稼働状態と直近のログを確認する。