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