View Single Post
Posts: 39 | Thanked: 13 times | Joined on Apr 2008 @ Genoa, Italy
#4
Finally I found the magic to make it work. I report it here because it might be useful for other people.

ALSA library needs some definitions about the available devices and the seq device was missing.
These definitions are stored in /usr/share/alsa/alsa.conf that includes /etc/asound.conf and ~/.asoundrc if they exists.
I created a file named .asoundrc into the /home/user directory, added the following lines and then it worked!

Code:
seq.default {
	type hw
}

seq.hw {
	type hw
}

Last edited by stale; 2009-02-21 at 00:53.