Ubuntu 23.04 サービスの状態の確認や有効化/無効化方法

環境
Ubuntu 23.04

操作方法
1.現在起動しているサービスの一覧を表示します。

# systemctl -t service

2. [–all] 付加で 停止中も含めて全サービスを表示します。

# systemctl -t service --all

3.サービスの起動設定の一覧を表示します

# systemctl list-unit-files -t service

4.不要なサービスがあれば、以下のようにして停止と自動起動の無効化設定をします。
以下の例では cloud-config 停止/無効に設定しています。なお、サービス名末尾の [.service] は省略可能です。

root@localhost:~# systemctl stop cloud-config
root@localhost:~# systemctl disable cloud-config

 

Ubuntu 23.04

Posted by arkgame