溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

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

發(fā)布時(shí)間:2021-07-12 15:41:43 來源:億速云 閱讀:296 作者:chen 欄目:系統(tǒng)運(yùn)維

本篇內(nèi)容主要講解“如何使Linux系統(tǒng)上的程序開機(jī)后自動(dòng)運(yùn)行”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“如何使Linux系統(tǒng)上的程序開機(jī)后自動(dòng)運(yùn)行”吧!

Linux有自己一套完整的啟動(dòng)體系,抓住了Linux啟動(dòng)的脈絡(luò),Linux的啟動(dòng)過程將不再神秘。
閱讀之前建議先看一下附圖。
本文中假設(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的啟動(dòng)
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
所有啟動(dòng)腳本放置在 /etc/rc.d/init.d下
rc?.d中放置的是init.d中腳本的鏈接,
命名格式是:
S{number}{name}
K{number}{name}
S開始的文件向腳本傳遞start參數(shù)
K開始的文件向腳本傳遞stop參數(shù)
number決定執(zhí)行的順序
3. 啟動(dòng)腳本示例
這是一個(gè)用來啟動(dòng)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)。
各個(gè)發(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啟動(dòng)腳本
/etc/profile
/etc/bashrc
~/.bash_profile
                  ~/.bashrc
是bash的啟動(dòng)腳本
一般用來設(shè)置單用戶的啟動(dòng)環(huán)境,也可以實(shí)現(xiàn)開機(jī)單用戶的程序,但要明確他們都是屬于bash范疇而不是系統(tǒng)范疇。
他們的具體作用介紹如下:
/bin/bash這個(gè)命令解釋程序(后面簡(jiǎn)稱shell)使用了一系列啟動(dòng)文件來建立一個(gè)運(yùn)行環(huán)境:
/etc/profile
/etc/bashrc
~/.bash_profile
~/.bashrc
~/.bash_logout
每一個(gè)文件都有特殊的功用并對(duì)登陸和交互環(huán)境有不同的影響。
/etc/profile 和 ~/.bash_profile 是在啟動(dòng)一個(gè)交互登陸shell的時(shí)候被調(diào)用。
/etc/bashrc 和 ~/.bashrc 是在一個(gè)交互的非登陸shell啟動(dòng)的時(shí)候被調(diào)用。
~/.bash_logout 在用戶注銷登陸的時(shí)候被讀取
一個(gè)交互的登陸shell會(huì)在 /bin/login 成功登陸之后運(yùn)行。一個(gè)交互的非登陸shell是通過命令行來運(yùn)行的,如[prompt] $/bin/bash。一般一個(gè)非交互的shell出現(xiàn)在運(yùn)行shell腳本的時(shí)候。之所以叫非交互的shell,是因?yàn)樗辉诿钚猩系却斎攵皇菆?zhí)行腳本程序。

到此,相信大家對(duì)“如何使Linux系統(tǒng)上的程序開機(jī)后自動(dòng)運(yùn)行”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI