主頁 > 知識庫 > 使Linux系統(tǒng)上的程序開機(jī)后自動運(yùn)行

使Linux系統(tǒng)上的程序開機(jī)后自動運(yùn)行

熱門標(biāo)簽:西寧人工外呼系統(tǒng)線路商 高德地圖標(biāo)注樓房入駐 諾基亞地圖標(biāo)注app 個人電銷機(jī)器人 南昌四川外呼系統(tǒng) 成都哪里有地圖標(biāo)注公司 北京外呼防封系統(tǒng)是什么 咸寧智能營銷電話機(jī)器人怎么樣 江蘇保險智能外呼系統(tǒng)產(chǎn)品介紹
Linux有自己一套完整的啟動體系,抓住了Linux啟動的脈絡(luò),Linux的啟動過程將不再神秘。
閱讀之前建議先看一下附圖。
本文中假設(shè)inittab中設(shè)置的init tree為:
/etc/rc.d/rc0.d
/etc/rc.d/rc1.d
/etc/rc.d/rc2.d
/etc/rc.d/rc3.d
/etc/rc.d/rc4.d
/etc/rc.d/rc5.d
/etc/rc.d/rc6.d
/etc/rc.d/init.d
1. 關(guān)于Linux的啟動
init是所有進(jìn)程之父
init讀取/etc/inittab,執(zhí)行rc.sysinit腳本
(注意文件名是不一定的,有些unix甚至?xí)⒄Z句直接寫在inittab中)
rc.sysinit腳本作了很多工作:
init $PATH
config network
start swap function
set hostname
check root file system, repair if needed
check root space
                  ....
rc.sysinit根據(jù)inittab執(zhí)行rc?.d腳本
Linux是多用戶系統(tǒng),getty是多用戶與單用戶的分水嶺
在getty之前運(yùn)行的是系統(tǒng)腳本
. 關(guān)于rc.d
所有啟動腳本放置在 /etc/rc.d/init.d下
rc?.d中放置的是init.d中腳本的鏈接,
命名格式是:
S{number}{name}
K{number}{name}
S開始的文件向腳本傳遞start參數(shù)
K開始的文件向腳本傳遞stop參數(shù)
number決定執(zhí)行的順序
3. 啟動腳本示例
這是一個用來啟動httpd的 /etc/rc.d/init.d/apache 腳本:
代碼:
#!/bin/bash
source /etc/sysconfig/rc
source $rc_functions
case "$1" in
        start)
                echo "Starting Apache daemon..."
                /usr/local/apache2/bin/apachectl -k start
                evaluate_retval
                ;;
        stop)
                echo "Stopping Apache daemon..."
                /usr/local/apache2/bin/apachectl -k stop
                evaluate_retval
                ;;
        restart)
                echo "Restarting Apache daemon..."
                /usr/local/apache2/bin/apachectl -k restart
                evaluate_retval
                ;;
        status)
                statusproc /usr/local/apache2/bin/httpd
                ;;
        *)
                echo "Usage: $0 {start|stop|restart|status}"
                exit 1
                                  ;;
esac可以看出他接受start,stop,restart,status參數(shù)
然后可以這樣建立rc?.d的鏈接:
代碼:
cd /etc/rc.d/init.d
ln -sf ../init.d/apache ../rc0.d/K28apache
ln -sf ../init.d/apache ../rc1.d/K28apache
ln -sf ../init.d/apache ../rc2.d/K28apache
ln -sf ../init.d/apache ../rc3.d/S32apache
ln -sf ../init.d/apache ../rc4.d/S32apache
ln -sf ../init.d/apache ../rc5.d/S32apache
                  ln -sf ../init.d/apache ../rc6.d/K28apache4. 關(guān)于rc.local
經(jīng)常使用的 rc.local 則完全是習(xí)慣問題,不是標(biāo)準(zhǔn)。
各個發(fā)行版有不同的實(shí)現(xiàn)方法,可以這樣實(shí)現(xiàn):
代碼:
touch /etc/rc.d/rc.local
chmod +x /etc/rc.d/rc.local
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc1.d/S999rc.local
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc2.d/S999rc.local
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc3.d/S999rc.local
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc4.d/S999rc.local
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc5.d/S999rc.local
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc6.d/S999rc.local5. 關(guān)于bash啟動腳本
/etc/profile
/etc/bashrc
~/.bash_profile
                  ~/.bashrc
是bash的啟動腳本
一般用來設(shè)置單用戶的啟動環(huán)境,也可以實(shí)現(xiàn)開機(jī)單用戶的程序,但要明確他們都是屬于bash范疇而不是系統(tǒng)范疇。
他們的具體作用介紹如下:
/bin/bash這個命令解釋程序(后面簡稱shell)使用了一系列啟動文件來建立一個運(yùn)行環(huán)境:
/etc/profile
/etc/bashrc
~/.bash_profile
~/.bashrc
~/.bash_logout
每一個文件都有特殊的功用并對登陸和交互環(huán)境有不同的影響。
/etc/profile 和 ~/.bash_profile 是在啟動一個交互登陸shell的時候被調(diào)用。
/etc/bashrc 和 ~/.bashrc 是在一個交互的非登陸shell啟動的時候被調(diào)用。
~/.bash_logout 在用戶注銷登陸的時候被讀取
一個交互的登陸shell會在 /bin/login 成功登陸之后運(yùn)行。一個交互的非登陸shell是通過命令行來運(yùn)行的,如[prompt] $/bin/bash。一般一個非交互的shell出現(xiàn)在運(yùn)行shell腳本的時候。之所以叫非交互的shell,是因?yàn)樗辉诿钚猩系却斎攵皇菆?zhí)行腳本程序。

標(biāo)簽:金華 清遠(yuǎn) 綏化 濮陽 中衛(wèi) 電信 長春 長春

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《使Linux系統(tǒng)上的程序開機(jī)后自動運(yùn)行》,本文關(guān)鍵詞  使,Linux,系統(tǒng),上,的,程序,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《使Linux系統(tǒng)上的程序開機(jī)后自動運(yùn)行》相關(guān)的同類信息!
  • 本頁收集關(guān)于使Linux系統(tǒng)上的程序開機(jī)后自動運(yùn)行的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章