自刨自吃,闲云野鹤,眼净心净,天宽地宽。
Install LILO to MBR on CCISS device
I was in hell when trying to get LILO installed on a CCISS driver, which is how HP SmartArray RAID card recognized as. No matter I installed LILO to MBR or Boot Record, it always failed.
Here is my solution:
- After installing Slackware finished, reboot server with Installation CD.
- At prompt, input:
1hugesmp.s root=/dev/cciss/c0d0p2 rdinit= ro
Change
hugesmp.sto your kernel if necessary.
c0d0p2means second partition of logical drive 0 on controller 0, which is my “/” partition. - Login as root, modify
/etc/lilo.conf. Changeboot = /dev/sdatoboot = /dev/cciss/c0d0p2. - Run the command:
1
2lilo -M /dev/cciss/c0d0 mbr
lilo
Reboot to check if everthing is right.