|
发表于 2007-8-11 17:17:19
|
显示全部楼层
为了能正确加载网卡和声卡和SATA驱动,我们先要在/etc/modprobe.conf文件里作如下修改。(估计是内核识别了网卡,并指出了驱动。可是却没有修改/etc/modprobe.conf文件)
install scsi_hostadapter /sbin/modprobe sata_nv; /bin/true
install eth0 /sbin/modprobe forcedeth; /bin/true
install sound /sbin/modprobe snd-hda-intel; /bin/tre
alias sound-slot-0 snd-hda-intel
install usb-interface /sbin/modprobe ohci-hcd; /sbin/modprobe ehci-hcd; /bin/true
alias eth0 forcedeth
alias eth1 forcedeth
说明,sata_nv是sata的驱动,而forcedeth是网卡的驱动。snd-hda-intel是根据nvidia论坛上所说的,要用这个。
改完这个后,还要改另外一个地方。也许不用改了。不过,我为了以防万一,又改了/etc/modules文件如下:
# /etc/modules: kernel modules to load at boot time.
#
# This file should contain the names of kernel modules that are
# to be loaded at boot time, one per line. Comments begin with
# a `#', and everything on the line after them are ignored.
alias eth0 forcedeth
alias eth1 forcedeth
alias forcedeth off
alias sound-slot -o snd-hda-intel
alsas snd-hda-intel off
alias i810_audio off
OK,你重新启动,应该就能用了。试试.. |
|