增加声音水平


27

是否可以将默认声音级别设置为超过100%?每次启动后,我都必须从声音设置中手动增加声音级别,这有点令人讨厌。我正在使用Ubuntu 13.04。



是的,它确实。但声音质量变差。不管怎么说,还是要谢谢你。

Answers:


36

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

2
...如果我希望它恢复正常,我会执行pactl -- set-sink-volume 0 100%??
米娜·迈克尔

(这是默认的权限吗?)
Mina Michael

2
@MinaMichael对!
RaduRădeanu2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.