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