First, list your ALSA cards to choose your default one. You can list your available cards by doing "cat /proc/asound/cards", the card name is shown between brackets. In the following, you should replace <CARDNAME> with the name of the card you want to use as default card.
Contents for /etc/asound.conf:
Code: Select all
pcm.!default {
type asym
playback.pcm {
type plug
slave.pcm dmix:<CARDNAME>
}
capture.pcm {
type plug
slave.pcm dsnoop:<CARDNAME>
}
}
ctl.!default {
type hw
card <CARDNAME>
}Code: Select all
pcm.!default {
type plug
slave.pcm jack
}
pcm.jack {
type jack
playback_ports {
0 alsa_pcm:playback_1
1 alsa_pcm:playback_2
}
capture_ports {
0 alsa_pcm:capture_1
1 alsa_pcm:capture_2
}
}
ctl.!default {
type hw
card <CARDNAME>
}I hope this gets solved in Debian soon so it's handled automatically with minimal manual configuration.