Her çalışma seviyesi için (0 6) /etc/rc[Nunan.d adlı bir klasör vardır.
Her dizinde "S" veya "K" ile başlayan sembolik bağlantı vardır. "S" başlatmak için e "K" durdurmak için. Komut dosyaları dosya adının sözcüksel bir şekilde yürütülür , diğer bir deyişle S10script S20myscript'ten önce yürütülür. Örneğin :
iki basit komut dosyamız var, ikinci çalışma.sh betiği mevcut çalışma seviyesindeki fist.sh betiğinden sonra yürütülmelidir.
root@localhost init.d]# cat /etc/init.d/first.sh
#!/bin/bash
#
echo 'I am the first' >> /var/log/messages
root@localhost init.d]# cat /etc/init.d/second.sh
#!/bin/bash
#
echo 'I am the second' >> /var/log/messages
Mevcut seviyem nedir?
[root@localhost init.d]# runlevel
N 5
Şimdi ilk için S (N) myScript ve S (N + 1) mysecondScript olarak başlayan sembolik bir bağlantıya ihtiyacımız var:
root@localhost rc5.d]# ln -s /etc/init.d/first.sh /etc/rc5.d/S1first
root@localhost rc5.d]# ln -s /etc/init.d/second.sh /etc/rc5.d/S2second
Mesajlar günlüğünü yeniden başlatabilir ve kontrol edebiliriz:
[root@localhost ~]# cat /var/log/messages | grep "I am" -A 1 -B 1
Dec 13 13:53:36 localhost rpc.statd[3468]: Version 1.0.9 Starting
I am the first
Dec 13 13:53:37 localhost hcid[3532]: Bluetooth HCI daemon
--
Dec 13 13:53:40 localhost automount[3689]: lookup_read_master: lookup(nisplus): couldn't locate nis+ table auto.master
I am the second
Dec 13 13:53:41 localhost gpm[3785]: *** info [startup.c(95)]:
Eski Centos üzerinde test edildi5