Pulse Audio Volume Reset Fix: Difference between revisions

From JoBaPedia
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
= Opensuse 13.x
= Opensuse 13.x =


edit the file:  
edit the file:  
Line 17: Line 17:
  volume = merge
  volume = merge


= Opensuse Leap 42.1
= Opensuse Leap 42.1 =


above already set, along with a lot of other, similar settings. Didn't find the proper place to fix.
above setting is already done, along with a lot of other, similar settings. Didn't find the proper place to fix.
Butr alternate solution still works:
But alternate solution still works:


  amixer -c 0 -- sset Speaker playback 100%
  amixer -c 0 -- sset Speaker playback 100%
Line 26: Line 26:
Probably best to put that in /etc/init.d/boot.local or similar
Probably best to put that in /etc/init.d/boot.local or similar


Sources:
= Sources =
* [[https://fitzcarraldoblog.wordpress.com/2014/12/01/fix-for-alsa-speaker-volume-level-resetting-to-zero-at-boot/ fitzcarraldoblog.wordpress.com]]
* [[https://fitzcarraldoblog.wordpress.com/2014/12/01/fix-for-alsa-speaker-volume-level-resetting-to-zero-at-boot/ fitzcarraldoblog.wordpress.com]]
* [[https://forums.opensuse.org/showthread.php/506090-Sound-stopped-working?p=2701125#post2701125 forums.opensuse.org]]
* [[https://forums.opensuse.org/showthread.php/506090-Sound-stopped-working?p=2701125#post2701125 forums.opensuse.org]]

Revision as of 08:05, 16 November 2015

Opensuse 13.x

edit the file:

/usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf

change this:

[Element Speaker]
switch = mute
volume = off

to this:

[Element Speaker]
switch = mute
volume = merge

Opensuse Leap 42.1

above setting is already done, along with a lot of other, similar settings. Didn't find the proper place to fix. But alternate solution still works:

amixer -c 0 -- sset Speaker playback 100%

Probably best to put that in /etc/init.d/boot.local or similar

Sources