web-dev-qa-db-ja.com

音量を上げる

デフォルトのサウンドレベルを100%以上に設定することは可能ですか? Ubuntu 13.04を使用しています。

27
kkdeep

terminal で次のコマンドを使用すると、必要に応じてサウンドレベルを設定できます。

pactl -- set-sink-volume 0 150%

この場合、シンク#0のボリュームを150%に設定しました。

ここで、起動時にこの設定をデフォルトとして設定する場合は、/etc/rc.localファイルに上記のコマンドを追加します。 Sudo -H gedit /etc/rc.localを使用して、このファイルの編集を開くことができます。

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

pactl -- set-sink-volume 0 150%

exit 0
36
Radu Rădeanu