sound muted on every startup

Questions about applications and software
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Kendall

Re: sound muted on every startup

Post by Kendall »

When I get time I'll do a clean install and start working updates one by one. I keep my system well updated, and I still haven't experienced this yet. Is everyone installing the kernel updates? This is one area I don't know about as I'm currently using the 2.6.34 RC1 kernel instead of the recommended 2.6.31-20.
richyrich

Re: sound muted on every startup

Post by richyrich »

I think this is when it started for me. From my history :

Code: Select all

Commit Log for Mon Jan 25 19:08:18 2010


Upgraded the following packages:
decibel-audio-player (1.00-2) to 1.00-2mint1
libcairo2 (1.8.8-2ubuntu1) to 1.8.8-2ubuntu1.1
libpulse0 (1:0.9.19-0ubuntu4) to 1:0.9.19-0ubuntu4.1
mint-fluxbox-default-settings (2.10) to 2.11
mint-info-fluxbox (8.0.4) to 8.0.5
slim (1.3.1-0mint16) to 1.3.1-0mint17
User avatar
Mr_Shifty
Level 2
Level 2
Posts: 57
Joined: Thu Feb 18, 2010 8:44 pm
Location: Wisconsin
Contact:

Re: sound muted on every startup

Post by Mr_Shifty »

Kendall wrote:I installed Gwibber and found it to be terribly unstable so I promptly removed it afterwards. I did check the sound and it seems that (as mentioned) Gwibber does not seem to be the cause of any sound issues on my end.
I discovered the same instability and promptly removed it from my Mint Fluxbox setup, but it seems rock solid on Mint LXDE RC1 (go figure), and I'm actually using it on a daily basis. I'm guessing like everyone else here is, that it's an update. The timing was just too convenient after I'd installed that list of apps, which had me thinking it was possible that it was one or more of them.
How are you guys installing Swiftfox? If you don't mind me asking.
The same way rgrwtrs is... I downloaded the installer shell script from the Get Swiftfox site and ran it with a sudo from the command line.
The Linux Critic
Once a computer beat me in chess, but it was no match for me in kickboxing.
User avatar
Mazhar
Level 1
Level 1
Posts: 26
Joined: Sun Feb 21, 2010 3:54 am
Location: Bangladesh
Contact:

Re: sound muted on every startup

Post by Mazhar »

Update:
Last night I booted my linux mint and found: sound is ok (not muted). I did not install or change anything in the last few days. How this problem is solved automatically? strange! :?
Gerard
Level 1
Level 1
Posts: 12
Joined: Sat Jan 27, 2007 7:13 am

Re: sound muted on every startup

Post by Gerard »

Thanks for the solution for the sound muting at startup.

Only one remaining thing, the decibel audio player only shows a scrambled screen, does anybody have an idea how to solve that?

Regards,
Gerard
Kendall

Re: sound muted on every startup

Post by Kendall »

Gerard wrote:Only one remaining thing, the decibel audio player only shows a scrambled screen, does anybody have an idea how to solve that?
I haven't seen any issues with Decibel, could you post a screenshot.

You may also consider dropping Decibel for another music player, such as Exaile.
Gerard
Level 1
Level 1
Posts: 12
Joined: Sat Jan 27, 2007 7:13 am

Re: sound muted on every startup

Post by Gerard »

I did install already an alternative music player, that's easy.
When I get home I will post a screenshot of decibel, basically a black window filled with purple mesh.

What I also noticed is that the volume button on the bar appears to have no effect on the audio volume, but when you use it, there is a small gray pop up window with rounded corners on the top right of the screen. Setting the audio volume appears to work only in the config screen.

Don't take it as a complaint, as I really like this version and it gave an old celeron from 99 its life back.
willi

Re: sound muted on every startup

Post by willi »

rgrwtrs wrote:Had the same problem, what worked for me was to comment out line in the /etc/init.d/alsa-utils file:
# mute_and_zero_levels

mine looked like this
# $1 <control>
# $CARDOPT
# mute_and_zero_level()
{
{ [ "$1" ] && [ "$CARDOPT" ] ; } || bugout
amixer $CARDOPT -q set "$1" "0%" mute 2>&1 | filter_amixer_output || :
return 0

Hello everybody. I do not understand what you did to fix the problem. I have this problem since installing fluxbox on my lappi so I thought it was normal. But it's really a pain in the a.. to unmute it manually. Unluckyly I do not understand what you mean by "comment out line". I dont know what i have to change in this file. Mine exactly looks like what we see in your quote. It would be nice if anybody can post how the file has to look after modification.
Thanks a lot in advance
Willi
remoulder
Level 17
Level 17
Posts: 7621
Joined: Fri May 09, 2008 1:14 pm

Re: sound muted on every startup

Post by remoulder »

Kendall this was a known bug in karmic, see https://bugs.launchpad.net/ubuntu/+sour ... bug/352732, but seems to have been fixed in alsa 1.0.22.1. Not sure which version is in later mint releases.
[Edit] your original post and add [SOLVED] once your question is resolved.

“The people are my God” stressing the factor determining man’s destiny lies within man not in anything outside man, and thereby defining man as the dominator and remoulder of the world.
rgrwtrs

Re: sound muted on every startup

Post by rgrwtrs »

willi wrote:
rgrwtrs wrote:Had the same problem, what worked for me was to comment out line in the /etc/init.d/alsa-utils file:
# mute_and_zero_levels

mine looked like this
# $1 <control>
# $CARDOPT
# mute_and_zero_level()
{
{ [ "$1" ] && [ "$CARDOPT" ] ; } || bugout
amixer $CARDOPT -q set "$1" "0%" mute 2>&1 | filter_amixer_output || :
return 0

Hello everybody. I do not understand what you did to fix the problem. I have this problem since installing fluxbox on my lappi so I thought it was normal. But it's really a pain in the a.. to unmute it manually. Unluckyly I do not understand what you mean by "comment out line". I dont know what i have to change in this file. Mine exactly looks like what we see in your quote. It would be nice if anybody can post how the file has to look after modification.
Thanks a lot in advance
Willi
Commenting out a line means putting an # in front of the line. By commenting out the line, it is not read. If there is already an # in front of the line, then this would not be causing your problem.

My original looked like this:
# $1 <control>
# $CARDOPT
mute_and_zero_level()
{
{ [ "$1" ] && [ "$CARDOPT" ] ; } || bugout
amixer $CARDOPT -q set "$1" "0%" mute 2>&1 | filter_amixer_output || :
return 0
and I added an # in front of the line "mute_and_zero_level() to make it look like:
# $1 <control>
# $CARDOPT
# mute_and_zero_level()
{
{ [ "$1" ] && [ "$CARDOPT" ] ; } || bugout
amixer $CARDOPT -q set "$1" "0%" mute 2>&1 | filter_amixer_output || :
return 0
Hope that helps
willi

Re: sound muted on every startup

Post by willi »

Thanks for explaining. It did fix the problem!!! :D Wow great support here. Respect!
Gerard
Level 1
Level 1
Posts: 12
Joined: Sat Jan 27, 2007 7:13 am

Re: sound muted on every startup

Post by Gerard »

Sorry, it took a bit longer than expected before I could post again, but the screenshot of Decibel audio player is included.
In the screen shot you can also see the small pop-up window (right top) appears when you try to change the volume with the scroll wheel of the mouse (there is no change in volume level though).

Anybody who knows what could be the cause and preferrably the solution :D

regards,
Gerard
Locked

Return to “Software & Applications”