chkconfigの結果の0〜6は何ですか?
例
chkconfig --list|grep iptables
iptables 0:off 1:off 2:on 3:on 4:on 5:on 6:off
異なる番号は、そのサービスの異なるランレベルに対応しています。
ID Name Description
---------------------------------------
0 Halt Shuts down the system.
1 Single-user Mode Mode for administrative tasks.
2 Multi-user Mode Does not configure network interfaces and does not export networks services.
3 Multi-user Mode with Networking Starts the system normally.
4 Not used/User-definable For special purposes.
5 Start the system normally with appropriate display manager. (with GUI) Same as runlevel 3 + display manager.
6 Reboot Reboots the system.
Wikipedia より具体的な情報が必要な場合は、さまざまなランレベル(基本システムによって意味が異なる場合があります)に関する詳細な説明があります。
これらの数値は、起動時に実行するプロセスまたはプログラムを決定する個別のランレベルです。これらはすべて/ etc/inittabで定義されています。 Linuxディストリビューションには7つの異なるランレベルがあり、起動時にinitプロセスはどのランレベルが実行されているかをチェックし、それに基づいてプロセスとサービスを実行します。ブートプロシージャでは、initはサービスの実行を担当する最後のステップです。
ランレベルは、通常、Linuxでの高度な管理を切り替えることで実行できるシステム状態です。
それらはSystemV runlevels です。