./?Linux/%E3%82%B7%E3%82%B9%E3%83%86%E3%83%A0/%E3%82%B5%E3%83%BC%E3%83%93%E3%82%B9%E5%88%B6%E5%BE%A1
- 追加された行はこの色です。
- 削除された行はこの色です。
- Linux/システム/サービス制御 へ行く。
- Linux/システム/サービス制御 の差分を削除
* サービス制御 [#ede85c8e]
** 制御コマンド [#u9af0e3d]
*** Redhat系 [#c0b967d3]
chkconfig
*** Debian系 [#cacf3486]
sysv-rc-conf
標準インストールされない場合があるので、なければapt-get install sysv-rc-confでインストールする。
** chkconfig rcスクリプト [#q3811759]
#!/bin/sh
#
# Foo Startup script for the Foo
#
# Starts the test daemon(test version)
#
# chkconfig: 345 99 15
# description: Foo is bar. It is user for Baz
- chkconfig:行とdescription:行が必須。
- chkfonfig: 起動するランレベル(345) 起動時の優先順位(99) 停止時の優先順位(15)