| … | |
… | |
| 4 | <guide link = "/doc/en/alsa-guide.xml"> |
4 | <guide link = "/doc/en/alsa-guide.xml"> |
| 5 | <title>Gentoo Linux ALSA Guide</title> |
5 | <title>Gentoo Linux ALSA Guide</title> |
| 6 | <author title="Author"><mail link="zu@pandora.be"> |
6 | <author title="Author"><mail link="zu@pandora.be"> |
| 7 | Vincent Verleye</mail> |
7 | Vincent Verleye</mail> |
| 8 | </author> |
8 | </author> |
| 9 | |
9 | <author title="Author"><mail link="g2boojum@gentoo.org"> |
|
|
10 | Grant Goodyear</mail> |
|
|
11 | </author> |
|
|
12 | <author title="Author"><mail link="agenkin@gentoo.org"> |
|
|
13 | Arcady Genkin</mail> |
|
|
14 | </author> |
| 10 | <author title="Editor"><mail link="zhen@gentoo.org"> |
15 | <author title="Editor"><mail link="zhen@gentoo.org"> |
| 11 | John P. Davis</mail> |
16 | John P. Davis</mail> |
| 12 | </author> |
17 | </author> |
| 13 | |
18 | |
| 14 | <abstract> |
19 | <abstract> |
| 15 | This guide will show you how to set up the Advanced Linux Sound Architecture (ALSA) on Gentoo Linux. |
20 | This guide will show you how to set up the Advanced Linux Sound Architecture (ALSA) on Gentoo Linux. |
| 16 | In addition to the Gentoo Linux Desktop Configuration Guide, this guide is supposed to give you more information on this subject. </abstract> |
21 | In addition to the Gentoo Linux Desktop Configuration Guide, this guide is supposed to give you more information on this subject. </abstract> |
| 17 | |
22 | |
| 18 | <version>1.2</version> |
23 | <version>1.2</version> |
| 19 | <date>09 February 2003</date> |
24 | <date>5 June 2003</date> |
| 20 | |
25 | |
| 21 | <chapter> |
26 | <chapter> |
| 22 | <title>Introduction</title> |
27 | <title>Introduction</title> |
| 23 | <section> |
28 | <section> |
| 24 | <title>What is ALSA?</title> |
29 | <title>What is ALSA?</title> |
| … | |
… | |
| 80 | <title>Installation</title> |
85 | <title>Installation</title> |
| 81 | <section> |
86 | <section> |
| 82 | <title>Kernel modules</title> |
87 | <title>Kernel modules</title> |
| 83 | <body> |
88 | <body> |
| 84 | <p> |
89 | <p> |
| 85 | Since we're still using 2.4.x kernel sources, we'll have to compile kernel modules and ALSA modules separately. |
90 | Since we're still using 2.4.x kernel sources, we'll have to compile kernel modules and ALSA modules separately. People who are using a 2.5.x kernel can do this from within their kernel configuration, since the ALSA modules are included in the kernel sources and should be built there. |
| 86 | </p> |
91 | </p> |
| 87 | <p> |
92 | <p> |
| 88 | First we'll make sure that our kernel configuration is ready for use with ALSA. |
93 | First we'll make sure that our kernel configuration is ready for use with ALSA. |
| 89 | All you need in your kernel configuration is having Sound Card Support set to be built as a module (M). |
94 | All you need in your kernel configuration is having Sound Card Support set to be built as a module (M). |
| 90 | This will build <c>soundcore.o</c>. |
95 | This will build <c>soundcore.o</c>. |
| … | |
… | |
| 136 | <body> |
141 | <body> |
| 137 | |
142 | |
| 138 | <p> |
143 | <p> |
| 139 | Now it's time to install the ALSA drivers for your soundcard(s). If your soundcard is PCI, you can find out the name |
144 | Now it's time to install the ALSA drivers for your soundcard(s). If your soundcard is PCI, you can find out the name |
| 140 | and type of your soundcard by looking at the output of /proc/pci |
145 | and type of your soundcard by looking at the output of /proc/pci |
| 141 | <pre>#<c>grep audio /proc/pci</c></pre> |
146 | <pre># <c>grep audio /proc/pci</c></pre> |
| 142 | </p> |
147 | </p> |
| 143 | |
148 | |
| 144 | <p> |
149 | <p> |
| 145 | <warn> |
150 | <warn> |
| 146 | If you had a previous sound setup and there are still non-ALSA sound modules loaded, unload them <e>now</e>. |
151 | If you had a previous sound setup and there are still non-ALSA sound modules loaded, unload them <e>now</e>. |
| … | |
… | |
| 151 | <p> |
156 | <p> |
| 152 | We could simply do an <c>emerge alsa-driver</c> now, this would compile and install <e>all</e> ALSA sound drivers. |
157 | We could simply do an <c>emerge alsa-driver</c> now, this would compile and install <e>all</e> ALSA sound drivers. |
| 153 | </p> |
158 | </p> |
| 154 | <p> |
159 | <p> |
| 155 | However, to save some time, lookup the <e>Module Name</e> of your soundcard(s) on the |
160 | However, to save some time, lookup the <e>Module Name</e> of your soundcard(s) on the |
| 156 | <uri link="http://www.alsa-project.org/alsa-doc">ALSA Soundcard Matrix</uri> under the <e>Install</e> section. |
161 | <uri link="http://www.alsa-project.org/alsa-doc">ALSA Soundcard Matrix</uri> by following the <e>Details</e> link in the <e>Driver and Docs</e> column in the row of the chipset of your soundcard. |
| 157 | Mine is <c>EMU10K1</c>, since I have an SBlive! soundcard. |
162 | Mine is <c>snd-emu10k1</c>, since I have an SBlive! soundcard, with the <e>EMU10K1</e> chipset. |
| 158 | We'll set ALSA_CARDS environment to this value before emerging, so emerge will only compile the drivers we need. |
163 | We'll set ALSA_CARDS environment to the value of the module name before emerging (but without the snd prefix), so emerge will only compile the drivers we need. |
| 159 | </p> |
164 | </p> |
| 160 | |
165 | |
| 161 | <p> |
166 | <p> |
| 162 | <pre> |
167 | <pre> |
| 163 | # <c>env ALSA_CARDS='emu10k1' emerge alsa-driver</c> |
168 | # <c>env ALSA_CARDS='emu10k1' emerge alsa-driver</c> |
| 164 | </pre> |
169 | </pre> |
| 165 | </p> |
170 | </p> |
| 166 | <p> |
171 | <p> |
|
|
172 | <note> |
|
|
173 | You can also add this value in <path>/etc/make.conf</path>, so when you have to emerge the alsa-driver later on you can just run <c>emerge alsa-driver</c>. |
|
|
174 | For example, like this: <c>echo 'ALSA_CARDS="emu10k1"' >> /etc/make.conf</c> |
|
|
175 | </note> |
|
|
176 | |
| 167 | <note> |
177 | <note> |
| 168 | When you want to install ALSA drivers for more than one soundcard, you could set ALSA_CARDS to a space-separated list |
178 | When you want to install ALSA drivers for more than one soundcard, you could set ALSA_CARDS to a space-separated list |
| 169 | of drivers; like this: <c>env ALSA_CARDS='emu10k1 intel8x0 ens1370' emerge alsa-driver</c> |
179 | of drivers; like this: <c>env ALSA_CARDS='emu10k1 intel8x0 ens1370' emerge alsa-driver</c> |
| 170 | </note> |
180 | </note> |
| 171 | |
181 | |
| … | |
… | |
| 194 | <p> |
204 | <p> |
| 195 | Check the ALSA portion <e>at the bottom of the file</e>. |
205 | Check the ALSA portion <e>at the bottom of the file</e>. |
| 196 | By tweaking this line you can specify the max number of soundcards you have (generally, just one). |
206 | By tweaking this line you can specify the max number of soundcards you have (generally, just one). |
| 197 | </p> |
207 | </p> |
| 198 | <p> |
208 | <p> |
| 199 | <pre caption="At the top of /etc/modules.d/alsa"> |
209 | <pre caption="At the bottom of /etc/modules.d/alsa"> |
| 200 | # Alsa 0.9.X kernel modules' configuration file. |
210 | # Set this to the correct number of cards. |
| 201 | # $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/alsa-guide.xml,v 1.7 2003/02/09 23:27:14 zhen Exp $ |
|
|
| 202 | |
|
|
| 203 | # ALSA portion |
|
|
| 204 | alias char-major-116 snd |
|
|
| 205 | <c>options snd major=116 cards_limit=1</c> |
211 | <c>options snd cards_limit=1</c> |
| 206 | # OSS/Free portion |
|
|
| 207 | alias char-major-14 soundcore |
|
|
| 208 | |
|
|
| 209 | ## |
|
|
| 210 | ## IMPORTANT: |
|
|
| 211 | </pre> |
212 | </pre> |
| 212 | </p> |
213 | </p> |
| 213 | <p> |
214 | <p> |
| 214 | Now we'll specify the sounddriver(s) ALSA should use. In the same file, edit like this: |
215 | Now we'll specify the sounddriver(s) ALSA should use. In the same file, edit like this: |
| 215 | <pre caption="A bit lower in /etc/modules.d/alsa"> |
216 | <pre caption="In /etc/modules.d/alsa"> |
| 216 | ## and then run `update-modules' command. |
217 | ## and then run `update-modules' command. |
| 217 | ## Read alsa-driver's INSTALL file in /usr/share/doc for more info. |
218 | ## Read alsa-driver's INSTALL file in /usr/share/doc for more info. |
| 218 | ## |
219 | ## |
| 219 | ## ALSA portion |
220 | ## ALSA portion |
| 220 | <c>alias snd-card-0 snd-emu10k1</c> |
221 | <c>alias snd-card-0 snd-emu10k1</c> |
| … | |
… | |
| 234 | <uri link="http://www.alsa-project.org/alsa-doc/alsa-howto/c1660.htm">Chapter 6</uri> |
235 | <uri link="http://www.alsa-project.org/alsa-doc/alsa-howto/c1660.htm">Chapter 6</uri> |
| 235 | of the <uri link="http://www.alsa-project.org/alsa-doc/alsa-howto/alsa-howto.html">ALSA Howto</uri>. |
236 | of the <uri link="http://www.alsa-project.org/alsa-doc/alsa-howto/alsa-howto.html">ALSA Howto</uri>. |
| 236 | </note> |
237 | </note> |
| 237 | </p> |
238 | </p> |
| 238 | <p> |
239 | <p> |
| 239 | Last thing to do in this file, at the very bottom, check if these lines are there and uncommented: |
240 | Last thing to do in this file, almost at the end, check if these lines are there and uncommented: |
| 240 | <pre caption="at the very bottom of /etc/modules.d/alsa"> |
241 | <pre caption="Near the end of /etc/modules.d/alsa"> |
| 241 | alias /dev/mixer snd-mixer-oss |
242 | alias /dev/mixer snd-mixer-oss |
| 242 | alias /dev/dsp snd-pcm-oss |
243 | alias /dev/dsp snd-pcm-oss |
| 243 | alias /dev/midi snd-seq-oss |
244 | alias /dev/midi snd-seq-oss |
| 244 | </pre> |
245 | </pre> |
| 245 | </p> |
246 | </p> |
| … | |
… | |
| 253 | Running <c>update-modules</c> here will insert the data from <path>/etc/modules.d/alsa</path> into <path>/etc/modules.conf</path> |
254 | Running <c>update-modules</c> here will insert the data from <path>/etc/modules.d/alsa</path> into <path>/etc/modules.conf</path> |
| 254 | </note> |
255 | </note> |
| 255 | <p> |
256 | <p> |
| 256 | You should also verify that /etc/devfsd.conf has the alsa devices and permissions correctly registered. |
257 | You should also verify that /etc/devfsd.conf has the alsa devices and permissions correctly registered. |
| 257 | </p> |
258 | </p> |
| 258 | <pre> |
259 | <pre caption="/etc/devfsd.conf"> |
| 259 | # nano -w /etc/devfsd.conf |
|
|
| 260 | </pre> |
|
|
| 261 | <pre> |
|
|
| 262 | # ALSA/OSS stuff |
260 | # ALSA/OSS stuff |
| 263 | # Comment/change these if you want to change the permissions on |
261 | # Comment/change these if you want to change the permissions on |
| 264 | # the audio devices |
262 | # the audio devices |
| 265 | LOOKUP snd MODLOAD ACTION snd |
263 | LOOKUP snd MODLOAD ACTION snd |
| 266 | LOOKUP dsp MODLOAD |
264 | LOOKUP dsp MODLOAD |
| … | |
… | |
| 324 | </p> |
322 | </p> |
| 325 | <p> |
323 | <p> |
| 326 | <pre> |
324 | <pre> |
| 327 | # <c>amixer set Master 100 unmute</c> |
325 | # <c>amixer set Master 100 unmute</c> |
| 328 | # <c>amixer set PCM 100 unmute</c> |
326 | # <c>amixer set PCM 100 unmute</c> |
| 329 | # <c>aplay /usr/kde/3/share/sounds/pop.wav</c> <codenote>(pop.wav is part of KDE)</codenote> |
327 | # <c>aplay $KDEDIR/share/sounds/pop.wav</c> <codenote>(pop.wav is part of KDE)</codenote> |
| 330 | </pre> |
328 | </pre> |
| 331 | </p> |
329 | </p> |
| 332 | We check to see if sound is working by using the aplay (alsa play) command. If you hear a pop, then sound is indeed working. |
330 | We check to see if sound is working by using the aplay (alsa play) command. If you hear a pop, then sound is indeed working. |
| 333 | Then, adjust the volume settings to your liking; the ncurses-based <c>alsamixer</c> is a great way to get them "just so". |
331 | Then, adjust the volume settings to your liking; the ncurses-based <c>alsamixer</c> is a great way to get them "just so". |
| 334 | <p> |
332 | <p> |
| … | |
… | |
| 346 | <p>When you ever rebuild your kernel, or upgrade to another kernel, you'll have to rebuild the ALSA modules.</p> |
344 | <p>When you ever rebuild your kernel, or upgrade to another kernel, you'll have to rebuild the ALSA modules.</p> |
| 347 | <p>Although you might have installed <c>alsa-driver</c>, <c>alsa-libs</c> and <c>alsa-utils</c>, only the first will |
345 | <p>Although you might have installed <c>alsa-driver</c>, <c>alsa-libs</c> and <c>alsa-utils</c>, only the first will |
| 348 | have to be installed again, since it will put the alsa modules in |
346 | have to be installed again, since it will put the alsa modules in |
| 349 | <path>/lib/modules/*/kernel/sound/pci/</path>.</p> |
347 | <path>/lib/modules/*/kernel/sound/pci/</path>.</p> |
| 350 | <pre caption="needed after each kernel compile"> |
348 | <pre caption="needed after each kernel compile"> |
| 351 | emerge alsa-driver |
349 | # <c>emerge alsa-driver</c> |
| 352 | </pre> |
350 | </pre> |
| 353 | </body> |
351 | </body> |
| 354 | </section> |
352 | </section> |
| 355 | <section> |
353 | <section> |
| 356 | <title>/etc/modules.autoload</title> |
354 | <title>/etc/modules.autoload</title> |
| … | |
… | |
| 367 | <p> |
365 | <p> |
| 368 | You could check these for additional info: |
366 | You could check these for additional info: |
| 369 | </p> |
367 | </p> |
| 370 | <p> |
368 | <p> |
| 371 | <ul> |
369 | <ul> |
| 372 | <li><uri link="http://www.gentoo.org/doc/desktop.html">The Gentoo Linux Desktop Configuration Guide</uri></li> |
370 | <li><uri link="http://www.gentoo.org/doc/en/desktop.xml">The Gentoo Linux Desktop Configuration Guide</uri></li> |
| 373 | <li><uri link="http://www.alsa-project.org">ALSA Project Homepage</uri></li> |
371 | <li><uri link="http://www.alsa-project.org">ALSA Project Homepage</uri></li> |
| 374 | <li><uri link="http://www.alsa-project.org/documentation.php3">ALSA Users Documentation</uri></li> |
372 | <li><uri link="http://www.alsa-project.org/documentation.php3">ALSA Users Documentation</uri></li> |
| 375 | <li><uri link="http://www.djcj.org">ALSA Howto's and FAQ's</uri></li> |
373 | <li><uri link="http://www.djcj.org">ALSA Howto's and FAQ's</uri></li> |
| 376 | <li><uri link="http://tldp.org/HOWTO/Sound-HOWTO/index.html">Linux Sound HOWTO</uri></li> |
374 | <li><uri link="http://tldp.org/HOWTO/Sound-HOWTO/index.html">Linux Sound HOWTO</uri></li> |
| 377 | <li><uri link="http://linux-sound.org/">Sound and MIDI Software For Linux</uri></li> |
375 | <li><uri link="http://linux-sound.org/">Sound and MIDI Software For Linux</uri></li> |