답변:
에서 다음 명령을 사용하여 터미널은 당신이 원하는대로, 당신은 사운드 레벨을 설정할 수 있습니다 :
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%
??