Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 280468
Collapse All | Expand All

(-)alsa-guide.xml.orig (-6 / +6 lines)
Lines 295-301 Link Here
295
You will now see a neat menu guided interface that will automatically probe
295
You will now see a neat menu guided interface that will automatically probe
296
your devices and try to find out your sound card. You will be asked to pick
296
your devices and try to find out your sound card. You will be asked to pick
297
your sound card from a list. Once that's done, it will ask you permission to
297
your sound card from a list. Once that's done, it will ask you permission to
298
automatically make required changes to <path>/etc/modules.d/alsa</path>.
298
automatically make required changes to <path>/etc/modprobe.d/alsa.conf</path>.
299
It will then adjust your volume settings to optimum levels, run
299
It will then adjust your volume settings to optimum levels, run
300
<c>update-modules</c> and start the <path>/etc/init.d/alsasound</path> service.
300
<c>update-modules</c> and start the <path>/etc/init.d/alsasound</path> service.
301
Once <c>alsaconf</c> exits, you can proceed with setting up the ALSA
301
Once <c>alsaconf</c> exits, you can proceed with setting up the ALSA
Lines 617-623 Link Here
617
617
618
<p>
618
<p>
619
Another reason for error messages similar to the ones above could be a file in
619
Another reason for error messages similar to the ones above could be a file in
620
<path>/etc/modules.d</path> supplying a <c>device_mode</c> parameter when it
620
<path>/etc/modprobe.d</path> supplying a <c>device_mode</c> parameter when it
621
isn't required. Confirm that this is indeed the issue and find out which file
621
isn't required. Confirm that this is indeed the issue and find out which file
622
is the culprit.
622
is the culprit.
623
</p>
623
</p>
Lines 627-633 Link Here
627
# <i>dmesg | grep device_mode</i>
627
# <i>dmesg | grep device_mode</i>
628
snd: Unknown parameter `device_mode'
628
snd: Unknown parameter `device_mode'
629
<comment>(Now, to get to the source of the issue)</comment>
629
<comment>(Now, to get to the source of the issue)</comment>
630
# <i>grep device_mode /etc/modules.d/*</i>
630
# <i>grep device_mode /etc/modprobe.d/*</i>
631
</pre>
631
</pre>
632
632
633
<p>
633
<p>
Lines 783-794 Link Here
783
<p>
783
<p>
784
You can have more than one sound card in your system simultaneously, provided
784
You can have more than one sound card in your system simultaneously, provided
785
that you have built ALSA as modules in your kernel. You just need to specify
785
that you have built ALSA as modules in your kernel. You just need to specify
786
which should be started first in <path>/etc/modules.d/alsa</path>. Your cards
786
which should be started first in <path>/etc/modprobe.d/alsa.conf</path>. Your cards
787
are identified by their driver names inside this file. 0 is the first card, 1 is
787
are identified by their driver names inside this file. 0 is the first card, 1 is
788
the second, and so on. Here's an example for a system with two sound cards.
788
the second, and so on. Here's an example for a system with two sound cards.
789
</p>
789
</p>
790
790
791
<pre caption="Two sound cards in /etc/modules.d/alsa">
791
<pre caption="Two sound cards in /etc/modprobe.d/alsa.conf">
792
options snd-emu10k1 index=0
792
options snd-emu10k1 index=0
793
options snd-via82xx index=1
793
options snd-via82xx index=1
794
</pre>
794
</pre>
Lines 799-805 Link Here
799
sound cards, two of which are the same Intel High Definition Audio card.
799
sound cards, two of which are the same Intel High Definition Audio card.
800
</p>
800
</p>
801
801
802
<pre caption="Multiple sound cards in /etc/modules.d/alsa">
802
<pre caption="Multiple sound cards in /etc/modprobe.d/alsa.conf">
803
options snd-ymfpci index=0
803
options snd-ymfpci index=0
804
options snd-hda-intel index=1,2
804
options snd-hda-intel index=1,2
805
</pre>
805
</pre>

Return to bug 280468