⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 720.html

📁 著名的linux英雄站点的文档打包
💻 HTML
📖 第 1 页 / 共 3 页
字号:
A: 为不同的芯片选择不同的module<br>
如果你是用的Red Hat7.1那么在应该选择:<br>
南桥芯片 应该用的包<br>
VT82C686A, VT82C686B, VT8231 68audio.rht71.gz<br>
VT8233, VT8233C 74audio.rht71.gz<br>
如果你是用的Red Hat7.2那么:<br>
Driver package South bridge chip CPU type<br>
68AUDIO.RHT72a.i386.GZ VT82C686A, VT82C686B, VT8231 VIA C3<br>
68AUDIO.RHT72a.i686.GZ VT82C686A, VT82C686B, VT8231 Intel PII/PIII, Socket 7 CPU<br>
68AUDIO.RHT72a.athlon.GZ VT82C686A, VT82C686B, VT8231 AMD K7<br>
74AUDIO.RHT72b.i386.GZ VT8233, VT8233C VIA C3<br>
74AUDIO.RHT72b.i686.GZ VT8233, VT8233C Intel Pentium4/PII/PIII, Socket 7 CPU<br>
74AUDIO.RHT72b.athlon.GZ VT8233, VT8233C AMD K7<br>
B:安装VIA 驱动<br>
下面的例子就是解压并安装VIA的驱动程序。<br>
tar zxvf 68audio.rht71.gz<br>
cd 68audio.rht71<br>
./vinstall<br>
(够简单的是不是,这是我钟情于VIA的地方,而且这个版本的驱动程序效果非常之好,我现在用的就是)<br>
注意:(1)在运行./vinstall之前请改变它的属性为755,不然没有可执行权。<br>
(2)在进入X环境的时候声音将会有一定的延迟,而且在运行XMMS等一些播放程序的时候同样成在该现象,但大多数情况下是可以忍受的。<br>
6: ALSA驱动<br>
A:准备核心原代码<br>
kernel-headers 和 kernel-source 是重新编译核心要使用到的两个文件如果你在第一次安装系统的时候没有选择,系统中将不会有声卡核心原码。你可以使用Package Manager。将核心原码装上。<br>
B:下载并解压ALSA包<br>
到http://www.alsa-project.org/下载一个压缩文件<br>
alsa-driver-0.5.12a.tar.bz2用下面的命令解压到你自己定义的一个文件中<br>
# bzip2 dc alsa-driver-0.5.12a.tar.bz2 | tar -xvf<br>
C:创造声卡驱动<br>
把路径设置到alsa-driver-0.5.12a,运行下面的程序来创建新的声卡驱动和探测声音控制器。<br>
# ./configure -with-kernel=/usr/src/linux-2.4<br>
# make<br>
# make install<br>
# ./snddevices<br>
这里可以选择手动和自动两种方法使module载入核心中。如果你希望手动载入声卡module,请参考步骤D。若你想自动载入声卡module请参考步骤E。<br>
D:手动载入声卡module<br>
用modprobe将需要的module载入核心<br>
# modprobe snd-card-via686a (for VT82C686A/VT82C686B/VT8231)<br>
# modprobe snd-card-via8233 (for VT8233/VT8233C)<br>
# modprobe snd-mixer-oss<br>
# modprobe snd-seq-oss<br>
# modprobe snd-pcm-oss<br>
但是在系统重新启动后,你必须重新载入它们。<br>
E:自动载入声卡module<br>
你要做的事情仅仅是在/etc/modules.conf文件中加入下面几行,并重新启动系统。所有声卡和声卡相关的module将会在系启动时自动载入,并能被所有应用程序使用。<br>
alias char-major-116 snd<br>
alias snd-card-0 snd-card-via686a (for 686A, 686B, 8231)<br>
alias snd-card-0 snd-card-via8233 (for 8233, 8233C)<br>
alias char-major-14 soundcore<br>
alias sound-slot-0 snd-card-0<br>
alias sound-service-0-0 snd-mixer-oss<br>
alias sound-service-0-1 snd-seq-oss<br>
alias sound-service-0-3 snd-pcm-oss<br>
alias sound-service-0-8 snd-seq-oss<br>
alias sound-service-0-12 snd-pcm-oss<br>
为了你能顺利的安装,我们已经为你编译好了。它们在你下载本文件的时候一并提供给你了。<br>
lsaconf-686 VT82C686A/VT82C686B/VT8231 适用<br>
alsaconf-8233 for VT8233/VT8233C适用<br>
F:使用OSS mixer启动高级音效<br>
使用ALSA声卡驱动的时候高级音效并没有启动,你可以使用Gnome 或者 ALSA mixer来激活。但因为Gnome 的简单易用而被推荐。<br>
(1)使用Gnome mixer<br>
它使用一个GUI的接口来调节声音等级。运行Gnome Mixer GMIX来调节设置。但是当你从新启动时你必须使用它进行重新设置。否则声卡将不能使用。如果GMIX被激活,原来的设置就会自动生效。<br>
(2)使用ALSA mixer<br>
在http://www.alsa-project.org/下载最新版本的alsa-lib-0.5.10b.tar.bz2和alsa-lib-utils-0.5.10.tar.bz2并按照说明安装它们。第一步:在你认为合适的地方解压。<br>
# bzip2 &shy;dc alsa-lib-0.5.10b.tar.bz2 | tar -xvf<br>
# bzip2 &shy;dc alsa-utils-0.5.10.tar.bz2 | tar -xvf<br>
然后分别到alsa-lib-0.5.10b和alsa-utils-0.5.10目录下运行下面的命令。<br>
# ./configure; make; make install<br>
完成了上面的步骤就安装好了。你接下来要做的是(run # amixer in the command line. You will see that all options are muted by default. Run the following 12 commands to un-mute and set the sound level.)<br>
amixer set PCM 22 unmute<br>
amixer set PC Speaker 22 unmute<br>
amixer set Master 22 unmute<br>
amixer set Master Mono 22 unmute<br>
amixer set Headphone 22 unmute<br>
amixer set Phone 22 unmute<br>
amixer set Aux 22 unmute<br>
amixer set Video 22 unmute<br>
amixer set CD 22 unmute<br>
amixer set Input Gain 22 unmute<br>
amixer set Line 22 unmute<br>
amixer set MIC 22 unmute<br>
为了方便,有一个脚本程序来为你自动启动所有的声效。<br>
./audunmute<br>
注意:./audunmute 命令的属性必须是755。在系统重新启动后所有与声卡有关的module都已经载入系统。但是必须使用./audunmute 命令来激活它们。<br>
<br>
七 OSS声卡驱动<br>
运行下面的命令来解压和安装声卡驱动。<br>
tar zxvf osslinux395f-2x.tar.gz<br>
./oss-install<br>
在运行第一个命令后将产生6个文件,第二个命令是用来安装驱动的。如果你在系统核心中用的是其他的声卡module或(third-party )module。OSS的应用程序会被中断。重要的是一定要在安装新的OSS声卡驱动之前删除原有的声卡驱动和module。<br>
(Navigate through the GUI interface to install audio driver; choose the target directory located at the uncompressed OSS packages;)记得在退出前保存设置。接下来,在/usr/lib/oss目录下运行./soundon来载入相关的声卡module到核心中去。也可以运行./soundoff删除OSS的声卡module。这样重新启动的时候声卡module就不会载入系统了。<br>
八: 驱动特性对照表(省略)<br>
九: 已进行驱动测试的芯片(省略)
</FONT><br>
                                      </TD>
                                    </TR>
                                <TR>
                                <TD colSpan=2><FONT 
                                class=middlefont></FONT><BR>
                                        <FONT 
                                class=normalfont>全文结束</FONT> </TD>
                                    </TR>
                                <TR>
                                <TD background="images/dot.gif" tppabs="http://www.linuxhero.com/docs/images/dot.gif" colSpan=2 
                                height=10></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></TD>
                        <TD vAlign=top width="20%" 
                      background="images/line.gif" tppabs="http://www.linuxhero.com/docs/images/line.gif" rowSpan=2> 
                          <DIV align=center> 
                            <table class=tableoutline cellspacing=1 cellpadding=4 
                        width="100%" align=center border=0>
                              <tr class=firstalt> 
                                <td noWrap background="images/bgline.gif" tppabs="http://www.linuxhero.com/docs/images/bgline.gif" colspan=2 height=21>
                                <font class=normalfont><b>所有分类</b></font></td>
                              </tr>
<tr class=secondalt> <td noWrap width=27%> <font class=normalfont>1:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type1.html" tppabs="http://www.linuxhero.com/docs/type1.html">非技术类</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>2:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type2.html" tppabs="http://www.linuxhero.com/docs/type2.html">基础知识</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>3:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type3.html" tppabs="http://www.linuxhero.com/docs/type3.html">指令大全</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>4:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type4.html" tppabs="http://www.linuxhero.com/docs/type4.html">shell</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>5:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type5.html" tppabs="http://www.linuxhero.com/docs/type5.html">安装启动</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>6:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type6.html" tppabs="http://www.linuxhero.com/docs/type6.html">xwindow</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>7:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type7.html" tppabs="http://www.linuxhero.com/docs/type7.html">kde</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>8:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type8.html" tppabs="http://www.linuxhero.com/docs/type8.html">gnome</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>9:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type9.html" tppabs="http://www.linuxhero.com/docs/type9.html">输入法类</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>10:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type10.html" tppabs="http://www.linuxhero.com/docs/type10.html">美化汉化</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>11:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type11.html" tppabs="http://www.linuxhero.com/docs/type11.html">网络配置</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>12:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type12.html" tppabs="http://www.linuxhero.com/docs/type12.html">存储备份</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>13:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type13.html" tppabs="http://www.linuxhero.com/docs/type13.html">杂项工具</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>14:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type14.html" tppabs="http://www.linuxhero.com/docs/type14.html">编程技术</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>15:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type15.html" tppabs="http://www.linuxhero.com/docs/type15.html">网络安全</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>16:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type16.html" tppabs="http://www.linuxhero.com/docs/type16.html">内核技术</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>17:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type17.html" tppabs="http://www.linuxhero.com/docs/type17.html">速度优化</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>18:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type18.html" tppabs="http://www.linuxhero.com/docs/type18.html">apache</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>19:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type19.html" tppabs="http://www.linuxhero.com/docs/type19.html">email</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>20:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type20.html" tppabs="http://www.linuxhero.com/docs/type20.html">ftp服务</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>21:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type21.html" tppabs="http://www.linuxhero.com/docs/type21.html">cvs服务</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>22:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type22.html" tppabs="http://www.linuxhero.com/docs/type22.html">代理服务</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>23:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type23.html" tppabs="http://www.linuxhero.com/docs/type23.html">samba</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>24:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type24.html" tppabs="http://www.linuxhero.com/docs/type24.html">域名服务</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>25:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type25.html" tppabs="http://www.linuxhero.com/docs/type25.html">网络过滤</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>26:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type26.html" tppabs="http://www.linuxhero.com/docs/type26.html">其他服务</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>27:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type27.html" tppabs="http://www.linuxhero.com/docs/type27.html">nfs</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>28:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type28.html" tppabs="http://www.linuxhero.com/docs/type28.html">oracle</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>29:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type29.html" tppabs="http://www.linuxhero.com/docs/type29.html">dhcp</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>30:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type30.html" tppabs="http://www.linuxhero.com/docs/type30.html">mysql</a></font></td>    </tr>  </table></td></tr><tr class=secondalt> <td noWrap width=27%> <font class=normalfont>31:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type31.html" tppabs="http://www.linuxhero.com/docs/type31.html">php</a></font></td>    </tr>  </table></td></tr><tr class=firstalt> <td noWrap width=27%> <font class=normalfont>32:</font> </td><td noWrap width=73%>   <table width=100% border=0>    <tr>       <td><font class=normalfont><a href="type32.html" tppabs="http://www.linuxhero.com/docs/type32.html">ldap</a></font></td>    </tr>  </table></td></tr>                            </table>
                          </DIV></TD></TR>
                    <TR vAlign=top>
                        <TD width="80%"> 
                          <DIV align=center><BR>
                          </DIV>
                        </TD></TR></TBODY></TABLE></TD></TR>
                </TABLE></TD></TR>
          </TABLE>
      <TABLE cellSpacing=0 cellPadding=4 width="100%" bgColor=#eeeeee 
        border=0><TBODY>
        <TR>
          <TD width="50%">
              <P><FONT class=middlefont>版权所有 &copy; 2004 <A 
            href="mailto:bjchenxu@sina.com">linux知识宝库</A><BR>
                违者必究. </FONT></P>
            </TD>
          <TD width="50%">
              <DIV align=right><FONT class=middlefont>Powered by: <A 
            href="mailto:bjchenxu@sina.com">Linux知识宝库</A> Version 0.9.0 </FONT></DIV>
            </TD></TR></TBODY></TABLE>
      <CENTER></CENTER></TD></TR>
    </TABLE></CENTER></BODY></HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -