GNU/Linux >> Linux の 問題 >  >> Linux

Ubuntu に chkconfig をインストールするにはどうすればよいですか?

alias chkconfig=sysv-rc-conf
chkconfig --list

構文

sysv-rc-conf command line usage:  

        sysv-rc-conf --list [service name]
        sysv-rc-conf [--level <runlevels>] <service name> <on|off>

Ubuntu では、/etc/init.d が /usr/lib/systemd に置き換えられました。スクリプトは引き続き「サービス」によって開始および停止できます。ただし、主要なコマンドは「systemctl」になりました。chkconfig コマンドは取り残されたため、systemctl でこれを行うようになりました。

代わりに:

chkconfig enable apache2

サービス名を探して有効にする必要があります

systemctl status apache2
systemctl enable apache2.service

Systemd は、systemd スクリプトまたは /etc/init.d スクリプトがあるかどうかを判断し、正しいことを行うことについて、よりフレンドリーになりました。


コマンド chkconfig Ubuntu では使用できなくなりました。chkconfig に相当するコマンド update-rc.d です .このコマンドは、ubuntu のすべての新しいバージョンをほぼサポートしています。

同様のコマンドは

update-rc.d <service> defaults

update-rc.d <service> start 20 3 4 5

update-rc.d -f <service>  remove

sysv-rc-conf は、Ubuntu の代替オプションです。

sudo apt-get install sysv-rc-conf

sysv-rc-conf --list xxxx

Linux
  1. Ubuntu20.04にRをインストールする方法

  2. Ubuntu18.04にGoをインストールする方法

  3. Wine 6.9がリリースされました! Ubuntu 21.04、20.04にインストールする方法

  1. Ubuntu18.04にRをインストールする方法

  2. Ubuntu18.04にRedisをインストールする方法

  3. Ubuntu20.04LTSにPintaをインストールする方法

  1. Ubuntu20.04LTSにMyPaintをインストールする方法

  2. Ubuntu20.04LTSにSkencilをインストールする方法

  3. Ubuntu20.04にLAMPをインストールする方法