当前位置: 技术问答>linux和unix
red hat9.0 内核升级编译后 声音模块的问题
来源: 互联网 发布时间:2015-10-18
本文导语: 我把内核从2.4.20-8升级到2.6.7后,声音模块有问题,不能播放音乐文件 在之前的make menuconfig设置的时候,在sound中选择了下面这一项 Intel i8x0/MX440, SiS 7012; Ali 5455; NForce Audio; AMD768/8111 在编译完成后,按照网上介绍的...
我把内核从2.4.20-8升级到2.6.7后,声音模块有问题,不能播放音乐文件
在之前的make menuconfig设置的时候,在sound中选择了下面这一项
Intel i8x0/MX440, SiS 7012; Ali 5455; NForce Audio; AMD768/8111
在编译完成后,按照网上介绍的方法,修改了/etc/modprobe.conf
添加了如下内容:
alias char-major-14 soundcore
alias sound snd-intel8x0
alias sound-slot-0 snd-intel8x0
alias snd-card-0 snd-intel8x0
alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-1 snd-seq-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-8 snd-seq-oss
alias sound-service-0-12 snd-pcm-oss
install snd-intel8x0 /sbin/modprobe --ignore-install sound-slot-0 &&
{ /bin/aumix-minimal -f /etc/.aumixrc -L >/dev/null 2>&1; /bin/true; }
remove snd-intel8x0
{ /bin/aumix-minimal -f /etc/.aumixrc -S >/dev/null 2>&1; /bin/true; };
/sbin/modprobe -r --ignore-remove sound-slot-0
但是在运行“modprobe sound”加载声音模块时,shell提示
Module snd_intel8x0 not found.
Error running install command for snd_intel8x0
Why?
在之前的make menuconfig设置的时候,在sound中选择了下面这一项
Intel i8x0/MX440, SiS 7012; Ali 5455; NForce Audio; AMD768/8111
在编译完成后,按照网上介绍的方法,修改了/etc/modprobe.conf
添加了如下内容:
alias char-major-14 soundcore
alias sound snd-intel8x0
alias sound-slot-0 snd-intel8x0
alias snd-card-0 snd-intel8x0
alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-1 snd-seq-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-8 snd-seq-oss
alias sound-service-0-12 snd-pcm-oss
install snd-intel8x0 /sbin/modprobe --ignore-install sound-slot-0 &&
{ /bin/aumix-minimal -f /etc/.aumixrc -L >/dev/null 2>&1; /bin/true; }
remove snd-intel8x0
{ /bin/aumix-minimal -f /etc/.aumixrc -S >/dev/null 2>&1; /bin/true; };
/sbin/modprobe -r --ignore-remove sound-slot-0
但是在运行“modprobe sound”加载声音模块时,shell提示
Module snd_intel8x0 not found.
Error running install command for snd_intel8x0
Why?
|
需要使用module-init 3.0以上
|
你用的什么声卡阿