You are not logged in.
Pages: 1
Hi all, I have no audio in a recently installed Arch on an Aspire 722. Not a note from the speakers nor from the headphone jack.
I have read tens of topics but all seem to say that audio works out of the box, except for headphones, but in my case it doesn't.
This is what I read:
https://bbs.archlinux.org/viewtopic.php?id=97653
http://ubuntuforums.org/showthread.php?t=1811178
https://bugs.launchpad.net/ubuntu/+sour … omments/91
http://crunchbanglinux.org/forums/topic … l-speaker/
https://answers.launchpad.net/ubuntu/+s … ion/165658
http://bernaerts.dyndns.org/linux/202-ubuntu-acer-ao722
https://bbs.archlinux.org/viewtopic.php?id=125522
and of course:
https://wiki.archlinux.org/index.php/Ad … chitecture
None helped, but I didn't get much of it honestly.
I can provide whatever info needed.
Some codes:
ls -l /dev/snd:
total 0
drwxr-xr-x 2 root root 80 2 nov 19.54 by-path/
crw-rw---T+ 1 root audio 116, 4 2 nov 19.54 controlC0
crw-rw---T+ 1 root audio 116, 8 2 nov 19.54 controlC1
crw-rw---T+ 1 root audio 116, 3 2 nov 19.54 hwC0D0
crw-rw---T+ 1 root audio 116, 7 2 nov 19.54 hwC1D0
crw-rw---T+ 1 root audio 116, 2 2 nov 19.54 pcmC0D3p
crw-rw---T+ 1 root audio 116, 6 2 nov 19.54 pcmC1D0c
crw-rw---T+ 1 root audio 116, 5 2 nov 19.45 pcmC1D0p
crw-rw---T 1 root audio 116, 1 2 nov 19.54 seq
crw-rw---T+ 1 root audio 116, 33 2 nov 19.54 timerlsmod|grep '^snd' | column -t:
snd_hda_codec_conexant 46356 1
snd_hda_codec_hdmi 22092 1
snd_hda_intel 22122 6
snd_hda_codec 77927 3 snd_hda_codec_conexant,snd_hda_codec_hdmi,snd_hda_intel
snd_hwdep 6325 1 snd_hda_codec
snd_pcm 73952 4 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec
snd_timer 19416 2 snd_pcm
snd 57818 17 snd_hda_codec_conexant,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer
snd_page_alloc 7121 2 snd_hda_intel,snd_pcmaplay -l:
**** List of PLAYBACK Hardware Devices ****
card 0: Generic [HD-Audio Generic], device 3: HDMI 0 [HDMI 0]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 1: SB [HDA ATI SB], device 0: CONEXANT Analog [CONEXANT Analog]
Subdevices: 0/1
Subdevice #0: subdevice #0speaker-test:
speaker-test 1.0.24.2
Playback device is default
Stream parameters are 48000Hz, S16_LE, 1 channels
Using 16 octaves of pink noise
Playback open error: -2,File o directory non esistenteHardware: 2016 Dell XPS15 - matte FullHD - i5-6300HQ - 32GB DDR4 - Nvidia GTX960M - Samsung 840EVO 250GB SSD - 56Wh
Software: Plasma 5 - rEFInd - linux-ck - preload - prelink - verynice - psd - bumblebee
Offline
Now for some reason audio works in kde test page (phonon) but not anywhere else (youtube, smplayer...)
Hardware: 2016 Dell XPS15 - matte FullHD - i5-6300HQ - 32GB DDR4 - Nvidia GTX960M - Samsung 840EVO 250GB SSD - 56Wh
Software: Plasma 5 - rEFInd - linux-ck - preload - prelink - verynice - psd - bumblebee
Offline
The output from aplay -l above shows that you have two sound adapters on that laptop.
Card 0, Device 3, is the HDMI output sound device;
Card 1, Device 0, is the analog output device (your speakers);
and the output from that ls command shows that the microphone is on Card 1, Device 0 (pcmC1D0c... "c" means "capture", while a "p" would mean "playback").
So, which device are you using for your testing?
From looking at the output of that speaker-test command, my guess is you're sending the sound to the HDMI ouput.
Try specifically using the analog device... something like the following:
speaker-test -c 2 -D plughw:1,0which will send a test signal to Card 1, Device 0.
If that happens to work, then go back to that Arch wiki page about ALSA that you mentioned in comment #1 and see Section 3.1 about setting up a "default" ALSA device if you don't want to tell all your sound applications which ALSA device to use.
Also, sometimes the Card numbers can swap after a reboot when there are multiple sound adapters installed, so first run that aplay -l command before trying the test to verify the current setup. See that same Section on the Arch wiki page to prevent this swapping of Card numbers by using /etc/modprobe.d/alsa.conf.
Offline
The output from aplay -l above shows that you have two sound adapters on that laptop.
Card 0, Device 3, is the HDMI output sound device;
Card 1, Device 0, is the analog output device (your speakers);
and the output from that ls command shows that the microphone is on Card 1, Device 0 (pcmC1D0c... "c" means "capture", while a "p" would mean "playback").
So, which device are you using for your testing?
Thanks for your reply. Sadly I do not have the said netbook available until weekend, but I can state what I can remember. Testing, as I should of course have stated before (sorry!) returned positive result only when using what KDE called "default", "(something like) ATI HD (not HDMI)" and "hw 1:0". Other audio devices did not work. I may be wrong tho.
From looking at the output of that speaker-test command, my guess is you're sending the sound to the HDMI ouput.
Try specifically using the analog device... something like the following:
speaker-test -c 2 -D plughw:1,0which will send a test signal to Card 1, Device 0.
If that happens to work, then go back to that Arch wiki page about ALSA that you mentioned in comment #1 and see Section 3.1 about setting up a "default" ALSA device if you don't want to tell all your sound applications which ALSA device to use.
Also, sometimes the Card numbers can swap after a reboot when there are multiple sound adapters installed, so first run that aplay -l command before trying the test to verify the current setup. See that same Section on the Arch wiki page to prevent this swapping of Card numbers by using /etc/modprobe.d/alsa.conf.
Will do. I'll ask my mother if she can do it and if so I'll post the results. If not I'll do it on friday.
Thanks again.
Hardware: 2016 Dell XPS15 - matte FullHD - i5-6300HQ - 32GB DDR4 - Nvidia GTX960M - Samsung 840EVO 250GB SSD - 56Wh
Software: Plasma 5 - rEFInd - linux-ck - preload - prelink - verynice - psd - bumblebee
Offline
The output from aplay -l above shows that you have two sound adapters on that laptop.
Card 0, Device 3, is the HDMI output sound device;
Card 1, Device 0, is the analog output device (your speakers);
and the output from that ls command shows that the microphone is on Card 1, Device 0 (pcmC1D0c... "c" means "capture", while a "p" would mean "playback").
So, which device are you using for your testing?
From looking at the output of that speaker-test command, my guess is you're sending the sound to the HDMI ouput.
Try specifically using the analog device... something like the following:
speaker-test -c 2 -D plughw:1,0which will send a test signal to Card 1, Device 0.
If that happens to work, then go back to that Arch wiki page about ALSA that you mentioned in comment #1 and see Section 3.1 about setting up a "default" ALSA device if you don't want to tell all your sound applications which ALSA device to use.
Also, sometimes the Card numbers can swap after a reboot when there are multiple sound adapters installed, so first run that aplay -l command before trying the test to verify the current setup. See that same Section on the Arch wiki page to prevent this swapping of Card numbers by using /etc/modprobe.d/alsa.conf.
Hi. Sorry I'm late.
Speaker test returns:
Playback open error: -16,Dispositivo o risorsa occupataWhich is "device or resource busy".
Phonon testing: works under "HDA ATI SB (CONEXANT Analog)"; "default"; "hw:0,1"
does not work under: "hw:0,3"; "HD-Audio Generic, HDMI 0 (HDMI Audio Output)"; "HDA ATI SB, CONEXANT Analog (Default Audio Device)" (this last one is nt even selectable).
Sounds to me KDE is locking the audio channel?
Hardware: 2016 Dell XPS15 - matte FullHD - i5-6300HQ - 32GB DDR4 - Nvidia GTX960M - Samsung 840EVO 250GB SSD - 56Wh
Software: Plasma 5 - rEFInd - linux-ck - preload - prelink - verynice - psd - bumblebee
Offline
Logged out of KDE and started the speker test again - it works!
So the problem is KDE locking the audio for himself?
Hardware: 2016 Dell XPS15 - matte FullHD - i5-6300HQ - 32GB DDR4 - Nvidia GTX960M - Samsung 840EVO 250GB SSD - 56Wh
Software: Plasma 5 - rEFInd - linux-ck - preload - prelink - verynice - psd - bumblebee
Offline
Pages: 1