手動建立系統啟動映象檔案:initrd.img

panpong發表於2014-08-20

手動建立系統啟動映象檔案:initrd.img

有時候為了能讓某些模組提前載入,修改系統啟動引導檔案可能是唯一方法;下面是從網上摘錄的提前載入multipath所需模組並提前啟動multipath的過程;大體上分四步;

步驟一:建立新的啟動檔案

mkinitrd --with=scsi_dh_rdac --with=dm-mod --with=dm-multipath --with=dm-round-robin initrd-`uname -r`.img `uname -r`

 

步驟二:抽取這些檔案

Extract the initrd image to a temp directory

 

#mkdir temp

#cd temp

#gzip -dc ../initrdmp.gz | cpio -id

 

步驟三:修改部分內容

Copy multipath.conf to the initrd image

 

#cp /etc/multipath.conf temp/etc/

 

步驟四:重新打包檔案

Repackage the initrd image

 

#find ./ | cpio -H newc -o > ../initrdmp

#gzip initrdmp

#cp initrdmp.gz /boot/

 

要想在系統啟動時自動選擇引導檔案,還需要修改grub.conf檔案;

[root@racdb ~]# vi /boot/grub/grub.conf

# grub.conf generated by anaconda

#

# Note that you do not have to rerun grub after making changes to this file

# NOTICE:  You have a /boot partition.  This means that

#          all kernel and initrd paths are relative to /boot/, eg.

#          root (hd0,0)

#          kernel /vmlinuz-version ro root=/dev/sda3

#          initrd /initrd-version.img

#boot=/dev/sda

default=0

timeout=5

splashimage=(hd0,0)/grub/splash.xpm.gz

hiddenmenu

title Red Hat Enterprise Linux AS (2.6.9-78.ELsmp)

        root (hd0,0)

        kernel /vmlinuz-2.6.9-78.ELsmp ro root=LABEL=/ rhgb quiet clock=pit nosmp noapic nolapic

        initrd /initrd-2.6.9-78.ELsmp.img

title Red Hat Enterprise Linux AS-up (2.6.9-78.EL)

        root (hd0,0)

        kernel /vmlinuz-2.6.9-78.EL ro root=LABEL=/ rhgb quiet

        initrd /initrd-2.6.9-78.EL.img

修改第一部分的紅色部分為新生成的啟動映象檔名稱,將新生成的啟動映象檔案複製到/boot下;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/16976507/viewspace-1254493/,如需轉載,請註明出處,否則將追究法律責任。

相關文章