You are not logged in.
Hi,
I have some problems in Arch (audio). I downloaded alsa-utils and oss packages via packman and after alsaconf configuration (it told me Have fun. Does it means fun with settings? ;-) ) I cant hear anything.
I tried aplay to play audio:
ALSA lib pcm_dmix.c:864:(snd_pcm_dmix_open) unable to open slave
aplay: main:545: audio open error: Device or resource busy
And this is VLC utput :
ALSA lib pcm_dmix.c:864:(snd_pcm_dmix_open) unable to open slave
[00000332] oss audio output error: cannot open audio device (/dev/dsp)
ALSA lib pcm_dmix.c:864:(snd_pcm_dmix_open) unable to open slave
[00000332] main audio output error: couldn't find a filter for the conversion
[00000332] main audio output error: couldn't create audio output pipeline
aplay and VLC runned with root privilegies....
Please help
Offline
Make sure you have compiled in the kernel the driver for your card. Then use alsamixer to change mixer settings, unmute it.
Offline
Are you in audio group?
i tried as a root. Still not running. Is there any way (i mean another way).
I switched from Debian due to low support of my hw (using Lenovo N100 core2duo), in ARCH everything running as i want. But only the audio cannot be heard ;-( //Iam playing my music on mobile(cell) phone ;-)
If there is not a way, I will still use the ARCH because my wifi (intel ipw3945) works fine.
Thanks in advance!
Offline
I have the same card. works fine with stock kernel and with custom kernel.
In the custom kernel I disabled oss. (I don't have any use for it) so I don't have /dev/dsp. I use alsa only but this does not need dsp device.
Offline
You probably have some other application that has opened /dev/dsp (the OSS device).
When an app uses /dev/dsp the ALSA software mixing can't work. See if you have artsd or esd started and disable them.
Offline
Ive find sollution on web:
Intel HDA
# mkdir alsa
# cd alsa
Download necessary source packages:
# wget ftp://ftp.alsa-project.org/pub/driver/a … c3.tar.bz2
# wget ftp://ftp.alsa-project.org/pub/lib/alsa … c3.tar.bz2
# wget ftp://ftp.alsa-project.org/pub/utils/al … c2.tar.bz2
Unpack it:
# tar xvf alsa-driver-1.0.14rc3.tar.bz2
# tar xvf alsa-lib-1.0.14rc3.tar.bz2
# tar xvf alsa-utils-1.0.14rc2.tar.bz2
Download patch realtek6.tar.gz
Unpack it:
# tar xvf realtek6.tar.gz
Replace original patch_realtek.c:
# cp patch_realtek.c ~/alsa/alsa-driver-1.0.14rc3/alsa-kernel/pci/hda/
Compile sources:
# su
# cd alsa-driver-1.0.14rc3
# ./configure --with-cards=hda-intel
# make
# make install
# cd ../alsa-lib-1.0.14rc3
# ./configure
# make install
# cd ../alsa-utils-1.0.14rc2
# ./configure
# make install
Configure sound card:
# alsaconf
realtek patch found here:
http://sysadmin.ic.cz/files/realtek6.tar.gz
Whole user how-to is situated here: http://sysadmin.ic.cz/
Offline