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

Notices


Reply
  Search this Thread
Old 04-11-2017, 07:15 PM   #1
M_W
LQ Newbie
 
Registered: Apr 2017
Posts: 12

Rep: Reputation: Disabled
Question Adjust Minimum Sound?


Setting my volume to the lowest setting (not muted) produces no sound, but if I increase it up from there it works as expected.

I've opened up the alsamixer, and at volume level 1 the master channel is at 6 with a dB gain of -73.5. If I manually increase the master to 7 or 8, I'm able to hear audio.

Is it possible to set it so that volume level 1 is set to 8 (-65.25 dB gain) instead of 6 (-73.5 dB gain) in the alsamixer?
 
Old 04-12-2017, 01:14 AM   #2
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by M_W View Post
Setting my volume to the lowest setting (not muted) produces no sound
that is normal and expected behavior.


Quote:
Is it possible to set it so that volume level 1 is set to 8 (-65.25 dB gain) instead of 6 (-73.5 dB gain) in the alsamixer?
maybe not in alsamixer, but it is definitely possible to have that sort of fine-grained control.
try amixer.

PS:
if you're using ubuntu, you're probably using pulseaudio, which comes with its own set of audio control tools.
maybe you should use those instead.

Last edited by ondoho; 04-12-2017 at 01:15 AM.
 
Old 04-12-2017, 07:48 AM   #3
M_W
LQ Newbie
 
Registered: Apr 2017
Posts: 12

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ondoho View Post
that is normal and expected behavior.
This is what I mean by lowest setting (not muted):
Click image for larger version

Name:	lowest-sound.png
Views:	18
Size:	19.5 KB
ID:	24756
 
Old 04-12-2017, 09:53 AM   #4
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by M_W View Post
Setting my volume to the lowest setting (not muted) produces no sound, but if I increase it up from there it works as expected.

I've opened up the alsamixer, and at volume level 1 the master channel is at 6 with a dB gain of -73.5. If I manually increase the master to 7 or 8, I'm able to hear audio.

Is it possible to set it so that volume level 1 is set to 8 (-65.25 dB gain) instead of 6 (-73.5 dB gain) in the alsamixer?
write a script that loads upon boot or better yet at login that will make sure it is not muted and then set your volume to whatever you want it to be at.

Welcome to Linux/GNU

Last edited by BW-userx; 04-12-2017 at 09:55 AM.
 
Old 04-12-2017, 12:39 PM   #5
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by M_W View Post
This is what I mean by lowest setting (not muted):
Attachment 24756
i know what you mean.
it is still normal and expected behavior - setting a channel's volume to zero is not the same as muting it.
 
Old 04-12-2017, 03:01 PM   #6
M_W
LQ Newbie
 
Registered: Apr 2017
Posts: 12

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ondoho View Post
i know what you mean.
it is still normal and expected behavior - setting a channel's volume to zero is not the same as muting it.
The level shown in the picture is not 0 (it's reported as 6 in alsamixer).
 
Old 04-12-2017, 03:06 PM   #7
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by M_W View Post
The level shown in the picture is not 0 (it's reported as 6 in alsamixer).
did you look into writing a script that insures that it is NOT muted then set to a level you want it to be when you log in yet, or given it any thought?

it can be done.

"psycho code"
Code:
#!/bin/bash

alsa unmute
alsa set vol = N
it has been my experience and others that default is mute. That is why their is many post saying "why is my sound not working"?

https://linux.die.net/man/1/amixer


http://linuxcommand.org/man_pages/amixer1.html


amixer set Master 30%,30%

Last edited by BW-userx; 04-12-2017 at 03:20 PM.
 
Old 04-13-2017, 01:24 AM   #8
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by M_W View Post
The level shown in the picture is not 0 (it's reported as 6 in alsamixer).
Quote:
Originally Posted by M_W View Post
Setting my volume to the lowest setting (not muted) produces no sound
i'm not sure, these two statements require more explanation i think. partial contradiction?

also i very much urge you to leave alsa things be and look at pulseaudio settings instead.

i assume you are using vanilla ubuntu since you posted in this subforum and have not supplied any additional information.

Last edited by ondoho; 04-13-2017 at 01:28 AM.
 
  


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
Adjust Minimum Brightness? M_W Ubuntu 9 04-13-2017 01:06 AM
Can't adjust sound atlaika Ubuntu 1 04-05-2006 06:58 PM
Can't find AUmix or Kmix in Mandrake 9.1 to adjust volume of sound. drumlinuxuser Linux - Software 8 10-10-2003 10:22 PM
How to adjust sound volume? CodeWarrior Slackware 9 06-08-2003 12:51 PM
Sound Volume Won't Adjust in KDE 3.0.1 mackie_lin Linux - Software 3 12-28-2002 04:27 PM

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

All times are GMT -5. The time now is 03:54 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