Linux管理者は、ディスクの空き容量を1時間ごとに確認するスクリプトを実行するシステムジョブをスケジュールしています。Linux管理者は、ユーザーがこのジョブを開始できないようにしたいと考えています。 次のことを前提とします。 Linux 管理者はタイマー サービスを開始しようとしますが、次のエラー メッセージが表示されます。 タイマーが開始しない理由として最も可能性が高いのは次のどれですか?
正解:C
The most likely reason the timer will not start is that the checkdiskspace.timer should be configured to allow manual starts. By default, systemd timers do not allow manual activation via systemct1 start, unless they have RefuseManualStart=no in their [Unit] section. This option prevents users from accidentally starting timers that are meant to be controlled by other mechanisms, such as calendar events or dependencies. To enable manual starts for checkdiskspace.timer, the administrator should add RefuseManualStart=no to its [Unit] section and reload systemd.