> root at opensolaris:~# /usr/sbin/mixerctl > mixerctl: device /dev/audioctl does not exist
That should explain why gstreamer is unable to find an audio device; /dev/audio and /dev/audioctl are missing. > root at opensolaris:~# prtconf -D | grep audiohd > pci1028,1dc, instance #0 (driver name: audiohd) Looks good. > bash: cd: /dev/audio: No such file or directory > bash: cd: /dev/audioctl: No such file or directory /dev/audio and /dev/audioctl are supposed to be symbolic links and should point to the default audio device. > root at opensolaris:/dev/sound# ls > 0 0ctl Looks good. Does "/usr/sbin/mixerctl -d /dev/sound/0" report information about your HD audio device? The problem seems to be that the /dev/audio and /dev/audioctl links are missing... Does "devfsadm -v" create them? In case devfsadm doesn't create the links, you can create them manually with: ln -s sound/0 /dev/audio ln -s sound/0ctl /dev/audioctl -- This message posted from opensolaris.org