回答:
ターミナルで次のコマンドを使用して、必要に応じてサウンドレベルを設定できます。
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
pactl -- set-sink-volume 0 100%
か?