Linux自啟動設定詳解

2021-06-16 22:00:37 字數 4600 閱讀 5980

linux有自己一套完整的啟動體系,抓住了linux啟動的脈絡,linux的啟動過程將不再神秘。

1

2

3

4

5

6

7

8

/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. 關於linux的啟動

init是所有程序的頂層

init讀取/etc/inittab,執行rc.sysinit指令碼

(注意檔名是不一定的,有些unix甚至會將語句直接寫在inittab中)

rc.sysinit指令碼作了很多任務作:

1

2

3

4

5

6

7

init $path

config network

start swapfunction

sethostname

check root file system, repairifneeded

check root space

....

rc.sysinit根據inittab執行rc?.d指令碼

linux是多使用者系統,getty是多使用者與單使用者的分水嶺

在getty之前執行的是系統指令碼

2. 關於rc.d

所有啟動指令碼放置在 /etc/rc.d/init.d下sk

s開始的檔案向指令碼傳遞start引數

k開始的檔案向指令碼傳遞stop引數

number決定執行的順序

3. 啟動指令碼示例

這是乙個用來啟動httpd的 /etc/rc.d/init.d/apache 指令碼:

1

2

#!/bin/bash

......

可以看出他接受start,stop,restart,status引數

1

2

3

4

5

6

7

8

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/k28apache

4. 關於rc.local

經常使用的 rc.local 則完全是習慣問題,不是標準。

各個發行版有不同的實現方法,可以這樣實現:

1

2

3

4

5

6

7

8

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.local

5. 關於bash啟動指令碼1

2

3

4

/etc/profile

/etc/bashrc

~/.bash_profile

~/.bashrc

是bash的啟動指令碼

一般用來設定單使用者的啟動環境,也可以實現開機單使用者的程式,但要明確他們都是屬於bash範疇而不是系統範疇。

他們的具體作用介紹如下:

/bin/bash這個命令解釋程式(後面簡稱shell)使用了一系列啟動檔案來建立乙個執行環境:

1

2

3

4

5

/etc/profile

/etc/bashrc

~/.bash_profile

~/.bashrc

~/.bash_logout

每乙個檔案都有特殊的功用並對登陸和互動環境有不同的影響。

/etc/profile 和 ~/.bash_profile 是在啟動乙個互動登陸shell的時候被呼叫。

/etc/bashrc 和 ~/.bashrc 是在乙個互動的非登陸shell啟動的時候被呼叫。

~/.bash_logout 在使用者登出登陸的時候被讀取。

乙個互動的登陸shell會在 /bin/login 成功登陸之後執行。乙個互動的非登陸shell是通過命令列來執行的,如[prompt]$/bin /bash。一般乙個非互動的shell出現在執行 shell指令碼的時候。之所以叫非互動的shell,是因為它不在命令列上等待輸入而只是執行指令碼程式。

6. 關於開機程式的自動啟動

系統指令碼可以放置在/etc/rc.d/init.d中並建立/etc/rc.d/rc?.d鏈結,也可以直接放置在/etc/rc.d/rc.local中。

init.d指令碼包含完整的start,stop,status,reload等引數,是標準做法,推薦使用。

為特定使用者使用的程式(如有的使用者需要使用中文輸入法而有的不需要)放置在~/中的bash啟動指令碼中。

下面用自啟動apache為例;

自啟動指令碼:

1

2

/usr/local/apache2/bin;

./apachectl start

檔案位於/etc/rc.d/init.d下,名為apached, 注意要可執行。

1

2

3

#chmod +x /etc/rc.d/init.d/apached//設定檔案的屬性為可執行

#ln -s /etc/rc.d/init.d/apached /etc/rc3.d/s90apache//建立軟連線,快捷方式

#ln -s /etc/rc.d/init.d/apached /etc/rc0.d/k20apache

Linux自啟動設定詳解

linux 自啟動設定詳解 linux有自己一套完整的啟動體系,抓住了linux啟動的脈絡,linux的啟動過程將不再神秘。本文中假設inittab中設定的init tree為 etc rc.d rc0.d etc rc.d rc1.d etc rc.d rc2.d etc rc.d rc3.d e...

linux設定自啟動,mongodb自啟動

linux建立自啟動指令碼 1 進入目錄 cd etc init.d 複製 2 建立指令碼檔案 touch start mongodb.sh 複製 3 編寫指令碼 bin sh chkconfig 345 99 10 description auto starts mongodb echo star...

設定Linux自啟動

方法1 由於linux版本的不同 自動啟動的shell指令碼放置的位置和名稱也不相同,在redhat 紅旗等版本的linux中啟動指令碼放在 etc rc.d目錄中,名稱是 rc.local。而suse版本的linux啟動指令碼是放在 etc init.d目錄中,名稱 boot.local.例如 a...