Hello,
I'm using etch and I have installed alsa-base, alsa-oss and alsa-utils. These device files are created at boot:
/dev/dsp0 --> PCI card
/dev/dsp1 --> Onboard card
/dev/dsp2 --> TV tuner
I'm using tvtime (which is oss application). I usually use the PCI card but sometimes want to use the onboard. So I tried this way:
- in .asoundrc introduced this:
pcm.dsp0 {
type hw
slave.pcm "hw:1,0"
}
- launch tvtime like this:
aoss tvtime
But the sound continues to come from the PCI card. I know that it works by introducing this in .asoundrc:
pcm.!default {
type hw
card 1
}
But shouldn't it work with the previous solution. Am I missing something here?