On Tue, 2006-11-14 at 12:16 -0800, Brad Fuller wrote:
I sent this to PlanetCCRMA ML yesterday, no
response. Thought someone
here could help.
For some reason I'm getting the following error when using aplay:
ALSA lib confmisc.c:672:(snd_func_card_driver) cannot find card '1'
ALSA lib conf.c:3492:(_snd_config_evaluate) function
snd_func_card_driver returned error: No such device
I believe there is some mixup during boot about my Midisport 8x8 (which
was 0) and the Delta 66 (which was card 1)
The Midisport doesn't seem to appear now.
You must have changed something to cause snd-usb-audio not to get
loaded.
For another weirdness, my modprobe is now:
# cat modprobe.conf
alias eth0 3c59x
alias snd-card-1 snd-ice1712
options snd-card-1 index=1
options snd-ice1712 index=1
remove snd-ice1712 { /usr/sbin/alsactl store 1 >/dev/null 2>&1 || : ; };
/sbin/modprobe -r --ignore-remove snd-ice1712
Would the (behind-my-back) removal of the midisport slip the Delta 66
into card 0 spot, but not tell others that the Delta 66 is now card 0
and not card 1? I don't care much about the Midisport, so why doesn't my
Delta66 work?
It does work, it's just card 0 now. What aplay command line are you
using? Do you have an .asoundrc? You shouldn't.
I know it's card 0 now. I don't know why midisport is not loading. I
didn't change anything in modprobe.conf myself. Unless something else did.
Nope, I don't have an .asourcerc
Here is an old FC3 modprobe.conf that worked:
alias eth0 3c59x
alias snd-card-0 snd-ice1712
options snd-card-0 index=0
install snd-ice1712 /sbin/modprobe --ignore-install snd-ice1712 &&
/usr/sbin/alsactl restore >/dev/null 2>&1 || :
remove snd-ice1712 { /usr/sbin/alsactl store >/dev/null 2>&1 || : ; };
/sbin/modprobe -r --ignore-remove snd-ice1712
alias snd-card-1 snd-usb-audio
options snd-usb-audio index=1
#
alias snd-card-2 snd-virmidi
options snd-virmidi index=2
alias usb-controller uhci-hcd
alias ieee1394-controller ohci1394
options snd cards_limit=4
why is there an install and remove, and the new one has only a remove?
What happened to alsaconf, is that defunct now?