Skip to content
Blog Increase the system wide sound (volume) in your linux (ubuntu etc..)

Increase the system wide sound (volume) in your linux (ubuntu etc..)

Here is another trick to increase the sound (soft volume) in Ubuntu Linux, this time system-wide.

1. Edit your /etc/asound.conf file.

On your terminal type


$ sudo gedit /etc/asound.conf

2. Paste the following into the asound.conf file:


pcm.!default {
type plug
slave.pcm "softvol"
}

pcm.softvol {
type softvol
slave {
pcm "dmix"
}
control {
name "Pre-Amp"
card 0
}
min_dB -5.0
max_dB 20.0
resolution 6
}

3. Restart PulseAudio:

$ pulseaudio -k >/dev/null 2>&1

To make sure pulseaudio is stopped:

$ killall pulseaudio

And then:

$ pulseaudio -D

$ pulseaudio ;


Finally Restart u r system…….

courtesy: http://webupd8.blogspot.com/2009/08/increase-maximum-sound-level-in-ubuntu.html

2 thoughts on “Increase the system wide sound (volume) in your linux (ubuntu etc..)”

  1. Thank you so much for this.

    I found that I could add a new track to be visible in my preferences in Sound and change the volume even louder in Ubuntu 8.10.

    Double-click on the sound icon and then go to Preferences, and then choose Pre-Amp to be visible after you’ve done the steps detailed here.

    Then just increase the volume however much you want.

    Ubuntu used to have quite low sound compared to Windows for me on the same machine, this has fixed it now.

    Thank you so much! :).

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.