LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 07-29-2017, 03:09 AM   #1
Wario.
Member
 
Registered: Feb 2012
Location: Italy
Distribution: Slackware (newbie)
Posts: 45

Rep: Reputation: Disabled
Debian 9 on Acer Aspire One ZA3: problems with audio.


Dear Community,

it's finally time for me to use again my old laptop
As every wise Linux users, I didn't expect things going so smoothly, indeed...

When I play an audio/video file, there is some sound from the speakers, but it is highly non-fluent. If I could describe a right output as "111111..", what I am listening should seem like "101001...".

Alsamixer claims:
Code:
Card: Pulseaudio
Chip: Pulseaudio
And I can shift via F6 to:
Code:
Card: HDA Intel (MID)
Chip: Realtek 2AC272X
but the results are unfortunately the same.
Lshw shows:
Code:
 *-multimedia
             description: Audio device
             product: System Controller Hub (SCH Poulsbo) HD Audio Controller
             vendor: Intel Corporation
             physical id: 1b
             bus info: pci@0000:00:1b.0
             version: 07
             width: 64 bits
             clock: 33MHz
             capabilities: pm pciexpress bus_master cap_list
             configuration: driver=snd_hda_intel latency=0
             resources: irq:22 memory:b0050000-b0053fff
I would like to remark how this problem was still true with the previous version of Debian (8). I have never tried other distro here, and I would be particularly glad if I succeeded in solving it on Debian. Finally, a dual-boot with Windows 7 suggests that the hardware works fine.

Thanks in advance for any help

Last edited by Wario.; 07-29-2017 at 03:13 AM.
 
Old 07-29-2017, 04:43 AM   #2
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
I am guessing you want laptop speakers rather than connect to a surround sound system?

If so take a screenshot of

Code:
alsamixer -c0
or press F6 and choose the analog and upload to
imgur.com
 
Old 07-29-2017, 06:11 AM   #3
Wario.
Member
 
Registered: Feb 2012
Location: Italy
Distribution: Slackware (newbie)
Posts: 45

Original Poster
Rep: Reputation: Disabled
Exactly, I would be happy in having just my headphones working well
Here is the alsamixer screenshot:
https://imgur.com/a/HuzO5
 
Old 07-29-2017, 08:48 AM   #4
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
Ok are they all the playback controls?

some sound devices have a control for auto muting speakers when headphones are detected.

anyhow use the arrow keys to get to each control and raise all of them

then use your panel speaker applet to control the master level

2) if you do not have an applet install pavucontrol which is a GUI speaker and settings control panel
 
Old 07-29-2017, 10:51 AM   #5
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian Stable
Posts: 2,546
Blog Entries: 8

Rep: Reputation: 465Reputation: 465Reputation: 465Reputation: 465Reputation: 465
My experience is that Debian 9 does not need alsa at all, just pulseaudio works well. You can use the following to determine what packages to remove to remove alsa:

Code:
dpkg -l | grep alsa
It may look like this:

Code:
ii  alsa-utils                            1.1.3-1                           amd64        Utilities for configuring and using ALSA
ii  gstreamer1.0-alsa:amd64               1.10.4-1                          amd64        GStreamer plugin for ALSA
To get rid of alsa, you can use something like:
Code:
apt-get remove --purge alsa-utils
apt-get autoremove --purge
I don't know if this will help, but if it doesn't help you can always just use apt-get to reinstall alsa-utils to get back to where you were.
 
Old 07-29-2017, 07:26 PM   #6
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
@ IsaacKuo

Quote:
My experience is that Debian 9 does not need alsa at all
So can I assume you have actual experience of no Alsa installed and still have sound?

that might sound rude but looking at your package list, you appear to have it installed.
 
Old 07-29-2017, 07:39 PM   #7
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian Stable
Posts: 2,546
Blog Entries: 8

Rep: Reputation: 465Reputation: 465Reputation: 465Reputation: 465Reputation: 465
Quote:
Originally Posted by aus9 View Post
@ IsaacKuo



So can I assume you have actual experience of no Alsa installed and still have sound?

that might sound rude but looking at your package list, you appear to have it installed.
Yes. I took that package list from a new install I just did with a full XFCE4 desktop default. This is much heavier than the normal minimal installs I do. The result of "dpkg -l | grep alsa" is simply empty on most of my computers, like the one I'm typing on right now.

With my RAMBOOT technique, I keep things lean and mean to reduce the size of / (it's copied entirely into RAM, so the smaller the better). If you just install XFCE4 - NOT the full desktop suite - then it will indeed install pulseaudio but it will NOT install alsa.

I can confirm that audio works with playing videos, mp3s, web sites (including YouTube, Netflix), etc... all with only pulseaudio and without alsa.
 
Old 07-29-2017, 07:44 PM   #8
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian Stable
Posts: 2,546
Blog Entries: 8

Rep: Reputation: 465Reputation: 465Reputation: 465Reputation: 465Reputation: 465
To be honest, I'm not sure whether or not alsa is necessary for Debian 8. I just accidentally discovered it with Debian 9 when I noticed the minimal XFCE4 install did not include alsa and audio worked anyway.

The audio volume control button I used in Debian 8 (with XFCE4) used alsa, so I had always ended up installing alsa before. It also had this really annoying bug where mousewheeling the volume all the way down would mute the audio, but mousewheeling back up would not unmute it. As I understand it, this was due to some sort of incompatibility between alsa and pulseaudio or something. Anyway, Debian 9's version of XFCE4 includes a pulseaudio control which does not suffer from that annoying bug.
 
Old 07-30-2017, 01:52 AM   #9
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
interesting, I can't delete alsa-utils as its a dependency of my desktop.

for that build, do you have libasound2 installed
https://packages.debian.org/stretch/...ound2/filelist

or did "autoremove" delete that too?

PS not sure if I have lost the confidence of OP,
 
Old 07-30-2017, 02:20 AM   #10
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian Stable
Posts: 2,546
Blog Entries: 8

Rep: Reputation: 465Reputation: 465Reputation: 465Reputation: 465Reputation: 465
Quote:
Originally Posted by aus9 View Post
interesting, I can't delete alsa-utils as its a dependency of my desktop.

for that build, do you have libasound2 installed
https://packages.debian.org/stretch/...ound2/filelist

or did "autoremove" delete that too?

PS not sure if I have lost the confidence of OP,
Yes, it is installed. Here's what I get for "dpkg -l | grep libasound":
Code:
ii  libasound2:amd64                     1.1.3-5                           amd64        shared library for ALSA applications
ii  libasound2-data                      1.1.3-5                           all          Configuration files and profiles for ALSA drivers
ii  libasound2-plugins:amd64             1:1.1.4-dmo1                      amd64        ALSA library additional plugins
So I guess I was wrong? I mean, my usage of "grep alsa" failed to match these because grep is case sensitive by default. It didn't catch ALSA as a match.
 
Old 07-30-2017, 07:33 AM   #11
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
well all is not lost, as I said I can't remove alsa-utils, if you are able to remove libasound* and still play sound that would be very cool.

I always thought PA was a front end to alsa or OSS so I had my suss meter working but hey I am an oldie

cheers
 
Old 07-30-2017, 03:41 PM   #12
Wario.
Member
 
Registered: Feb 2012
Location: Italy
Distribution: Slackware (newbie)
Posts: 45

Original Poster
Rep: Reputation: Disabled
My apologies for my being in late, and of course thanks to everybody for the conversation :-)
Hoping not to sound impolite, I would like to let you know that I will temporary move for one month to another place, where is it likely that I will no need to use my old Acer One (and I will probably not have time for testing-stuff).
Do you mind if we tried to continue in September? (strongly hoping not to abuse of your patience / violate any forum rule) :-)

Thanks in advance!!!
 
Old 07-30-2017, 07:24 PM   #13
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
yeah not a problem for me can't speak for Isaac
when you get back, post a reply that so far still distortion and it exists for various file formats
we can then advise if you need to install gstreamer codec support or install a better media player that can handle various things.
since I don't know what timezone Nintendoland has....send me a pm after reply and I can check
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Acer Aspire One ZA3 and Slackware 14.0 hitest Slackware 2 11-28-2012 09:33 PM
Best distro for acer aspire one za3. William_White Linux - Laptop and Netbook 1 08-20-2012 06:44 PM
UNR failure to install on an acer aspire one ZA3 (11.6") dazzarazza Linux - Laptop and Netbook 1 10-12-2009 10:31 AM
Acer Aspire 1642ZNWLMi audio problems zweistein Ubuntu 12 07-07-2008 12:32 AM
Audio Driver for Acer Aspire 5100 bezgodo Solaris / OpenSolaris 1 08-21-2007 02:54 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

All times are GMT -5. The time now is 08:00 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration