booey chewy wrote:
> The only problem: my m-audio quattro wasn't picked up.
> here's my modules.conf file:
> ...
> # --- BEGIN: Generated by ALSACONF, do not edit. ---
> # --- ALSACONF verion 0.9.0 ---
> alias char-major-116 snd
> alias snd-card-0 snd-intel8x0
> alias char-major-14 soundcore
> alias sound-slot-0 snd-card-0
> 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
> options snd major=116 cards_limit=1
> options snd-intel8x0 index=0
> # --- END: Generated by ALSACONF, do not edit. ---
>
> I believe I need to add something like
>
> alias snd-card-0 snd-usbaudio

The second card would be card 1 (not 0), so the line should be

  alias snd-card-1 snd-usb-audio

and you should tell the driver to load at index 1:

  options snd-usb-audio index=1

and you must modify the options for the snd module to allow 2 cards:

  options snd major=116 cards_limit=2

> or something and then repeat the sound service line
> but with 1-0 1-1 1-3...1-12,

Yes. (-1 and -8 aren't needed except for the first card)

> Also I forgot how to edit the file via command prompt.

You don't really need the command prompt, you can use any editor you
like, as long as it can edit text files.

> I'd like the Quattro to be my primary sound card,

In this case, exchange indices 0 and 1, so everything would be:

alias char-major-116 snd
alias snd-card-0 snd-usb-audio
alias snd-card-1 snd-intel8x0
alias char-major-14 soundcore
alias sound-slot-0 snd-card-0
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
alias sound-slot-1 snd-card-1
alias sound-service-1-0 snd-mixer-oss
alias sound-service-1-3 snd-pcm-oss
alias sound-service-1-12 snd-pcm-oss
options snd major=116 cards_limit=2
options snd-usb-audio index=0
options snd-intel8x0 index=1


HTH
Clemens




-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01
_______________________________________________
Alsa-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-user

Reply via email to