LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware - Installation (https://www.linuxquestions.org/questions/slackware-installation-40/)
-   -   ICH9 RAID prevents installation, any ideas? (https://www.linuxquestions.org/questions/slackware-installation-40/ich9-raid-prevents-installation-any-ideas-727828/)

kay27 05-25-2009 01:24 PM

Right on :) I've commented line 148 of /etc/rc.d/rc.S:
Code:

#    /sbin/fsck $FORCEFSCK -C -a /
It's now all right.

Thanx.

H_TeXMeX_H 05-25-2009 02:12 PM

That's great. Usually it shouldn't be this difficult to install, but this may be a special case, or a bug ...

Erik_FL 06-15-2009 10:51 PM

I don't know if this is still a problem, but I use ICH10 RAID and installed Slackware in the RAID partition. I modified the "sd.c" file to omit the partition checking on the first two drives.

Change this line.

Code:

gd->minors = 16;
To this.

Code:

gd->minors = (index < 2) ? 1 : 16;
The number "2" can be changed and it specifies the number of "sd" device letters to skip. As is it skips "sda" and "sdb". By using a different expression besides "index < 2" it's possible to omit some arbitrary range of letters. This is a KLUGE but was the safest way that I knew to change the code. A driver or kernel parameter to specify devices to skip for partition checking would be helpful.


All times are GMT -5. The time now is 02:53 AM.