1、環境
服務器:曙光 天闊A420r-G
操做系統:centos 5.5 x86-64
服務器自帶三塊500G硬盤,並經過RAID卡設置爲RAID 5磁盤陣列,但在安裝系統的過程當中卻一直沒法順利安裝,緣由就是缺少raid卡的驅動,因而跟曙光客服聯繫,從隨機導航光盤中得到了驅動程序,但因爲該驅動程序不是所須要的img格式,因此一直加載不成功。此前經過百度查詢,一一試以下作法,均告失敗。
一、將驅動拷貝到u盤(fat32格式),而後在安裝的時候經過linux dd命令加載,失敗
二、方法同1,只是u盤格式爲fat格式,失敗
三、方法同上,只是將u盤格式化爲ext3格式,失敗
四、同以上各類,將驅動至於u盤根目錄,均失敗
看來只有img格式可行了,但手頭沒有img格式的驅動,該如何呢,經網上查詢,能夠本身製做img格式的文件,方法以下
2、製做img文件
下面的代碼是實際操做命令,對紅色的內容添加註釋以下:
[root
@localhost /]#
mkfs.ext3 -m0 /dev/ram1 #將/dev/ram1格式化爲ext3文件系統
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
4096 inodes, 16384 blocks
0 blocks (0.00%) reserved for the super user
First data block=1
Maximum filesystem blocks=16777216
2 block groups
8192 blocks per group, 8192 fragments per group
2048 inodes per group
Superblock backups stored on blocks:
8193
Writing inode tables: done
Creating journal (1024 blocks): done
Writing superblocks and filesystem accounting information: done node
This filesystem will be automatically checked every 21 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
[root@localhost /]# mount /dev/ram1 /mnt #將該目錄mount到目錄/mnt,因爲是剛格式化,因此其中內容爲空
[root@localhost /]# cd /mnt
[root@localhost mnt]# ls
lost+found
[root@localhost mnt]# cp /tmp/u/* . #將事先準備好的驅動程序拷貝進去 linux
[root
@localhost mnt]#
ls #查看其中的內容
install modinfo modules.cgz modules.pcimap pcitable rhdd
lost+found modules.alias modules.dep pci.ids readme
[root
@localhost mnt]# cd ..
[root
@localhost /]#
umount /dev/ram1 #卸載該文件系統
[root
@localhost /]#
dd if=/dev/ram1 of=/tmp/raid.img #經過dd命令將該文件系統的內容轉換爲img格式的文件,存放在/tmp目錄下
32768+0 records in
32768+0 records out
16777216 bytes (17 MB) copied, 0.683585 seconds, 24.5 MB/s
[root
@localhost /]#
ls /tmp/raid.img
/tmp/raid.img
[root
@localhost /]# ls /tmp/raid.img -lh
-rw-r--r-- 1 root root 16M 06-12 11:10 /tmp/raid.img
[root
@localhost /]#
mount /dev/sda1 /mnt #掛載u盤
[root
@localhost /]#
cp /tmp/raid.img /mnt #將作好的img文件拷貝到u盤
[root
@localhost /]# umount /mnt
[root
@localhost /]# umount /dev/sda1
3、安裝centos系統
將按照光盤裝入光驅,有raid驅動img文件的u盤插入usb接口,從光盤啓動,到引導界面後,輸入linux dd回車,當提問do you have a driver disk?時,選yes,而後選擇sda,而後選擇剛製做好的img 文件raid.img,回車後會加載該驅動文件,當提問do you want to load any more driver disks?時,選No,接下來就跟普通安裝linux徹底相同了。
4、說明
因爲帶有raid卡,因此當raid驅動沒加載成功時,進入安裝界面後,要麼看不到硬盤,要麼看到的不是raid後的硬盤,而是一個個的孤立硬盤,此時雖然能夠進行安裝過程,但安裝後沒法啓動相同。當raid驅動加載成功後,進入安裝界面後,看到的硬盤將是raid設置後的大小,而不是一個個孤立的硬盤。