红联Linux门户
Linux帮助

ubuntu系统没有声音解决方法

发布时间:2015-09-15 15:39:18来源:linux网站作者:喜欢的知道

今天突然遇到系统没声音,查找问题:

根源在于用户失去了访问audio设备的权限。可以通过命令

ls -la /dev/snd

来查看音频设备的使用权限。比如在我的系统下,输出

total 0

drwxr-xr-x   2 root root    180  08:53 .

drwxr-xr-x  12 root root   4580  13:01 ..

crw-rw----+  1 root root 116, 8  08:53 controlC0

crw-rw----+  1 root root 116, 7  08:53 hwC0D2

crw-rw----+  1 root root 116, 6  08:54 pcmC0D0c

crw-rw----+  1 root root 116, 5  14:04 pcmC0D0p

crw-rw----+  1 root root 116, 4  08:53 pcmC0D1p

crw-rw----+  1 root root 116, 3  08:53 seq

crw-rw----+  1 root root 116, 2  08:53 timer

这代表只有root和audio组的用户可以使用 音频设备。这也就是为什么

在root下Volume Control工作正常,而在其他用户下无法使用。也许是

一些错误操作将用户从audio组中删除而无法使用音频设备。


解决办法是

sudo chmod -R a+rwx /dev/snd

这样就会让所有的用户可以访问音频设备。

更加恰当的方法是,

sudo usermod -a -G audiousrname.

备注:我采用的第一种命令解决问题,bingo!


从ubuntu14.10升级到ubuntu15.04没有声音:http://www.linuxdiyf.com/linux/13628.html

在Ubuntu下使用hdmi后电脑没有声音的解决方法:http://www.linuxdiyf.com/linux/10022.html

Ubuntu没有声音解决实例:http://www.linuxdiyf.com/linux/9845.html

Ubuntu 14.04中修复默认启用HDMI后没有声音的问题:http://www.linuxdiyf.com/linux/1239.html

Ubuntu突然没有声音的解决方法:http://www.linuxdiyf.com/linux/793.html