pcicc32获取系统的安装问题

1.使用SCIENTIFIC LINUX4.4的时候,只有使用-----smp--的时候才有效,否则test程序总会导致死机。

2.可以在/boot/grub/menu.lst里修改默认启动模块。(hugemem, smp,还有一个,他们三个之间是有略微的差别的,这个可以在网上搜索。)

3.设置计算机启动自动搜索模块。可以参照以下案例。(注:sonypi和mymodules的名字改成pcicc32即可,网址:http://www.linuxforums.org/forum ... -modprobe-boot.html)

Create 1 file /etc/init.d/myModules

Fill it with

#!/bin/bash /sbin/modprobe sonypi

Enter command

chmod +x /etc/init.d/myModules

Then issue theese two commands

ln -s /etc/init.d/myModules /etc/rc.d/rc3.d/S99myModules ln -s /etc/init.d/myModules /etc/rc.d/rc5.d/S99myModules