Articles Comments

{ Berbagi, Menulis, Dan Mengajar } Ilmu… » Linux » Bikin Boot Up Script di Debian GNU Linux dengan perintah update-rc.d

Bikin Boot Up Script di Debian GNU Linux dengan perintah update-rc.d

Membuat sebuah script bootup pada saat sistem pertama kali di start bisa dilakukan dengan banyak alternatif.
ada beberapa metode yang bisa kita lakukan,
antara lain dengan menyisipkan script yang akan kita bootup kedalam program bootup yang sudah disediakan oleh system, misal pada debian kita bisa menyisipkan kedalam /etc/network/interfaces
akan tetapi cara diatas menurut saya kurang profesional dilakukan oleh seorang system administrator, alangkah lebih baik jika kita bisa melakukannya mengikuti standart perlakukan boot system di DEBIAN dengan meletakkan Script yang akan di bootup kedalam Direktori /etc/init.d/, Berikut adalah langkah – langkah pembuatan script bootup:

Pertama :

1. Taruh File yang akan di bootup ke direktori /etc/init.d
2. chmod 755 foobar

Kedua :
Baca manual dibawah ini ;)
Insert links using the defaults:
update-rc.d foobar defaults
Equivalent command using explicit argument sets:
update-rc.d foobar start 20 2 3 4 5 . stop 20 0 1 6 .
More typical command using explicit argument sets:
update-rc.d foobar start 30 2 3 4 5 . stop 70 0 1 6 .
Remove all links for a script (assuming foobar has been deleted already):
update-rc.d foobar remove
Example of disabling a service:
update-rc.d -f foobar remove
update-rc.d foobar stop 20 2 3 4 5 .
Example of a command for installing a system initialization-and-shutdown script:
update-rc.d foobar start 45 S . start 31 0 6 .
Example of a command for disabling a system initialization-and-shutdown script:
update-rc.d -f foobar remove
update-rc.d foobar stop 45 S .

.:GoodLuck:.

Filed under: Linux

Leave a Reply

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>