Linux 声卡驱动问题

最近转Gentoo,一切安装就绪了,但是想使用youtube观看视频的时候,竟没有声音,估计又得折腾一下了。

(Advanced Linux Sound Architecture,ALSA)是Linux中提供声音设备驱动的内核组件,用来代替原来的开放声音系统(Open Sound System,OSSv3)。

  • 系统环境:Linux hcj.com 4.1.15-gentoo-r1
  • 组件:alsa
  • 前提:内核已经配置支持

硬件设备显示

1
lspci | grep -i audio

安装

1
2
3
euse -E alsa
emerge --ask --changed-use --deep @world
emerge --ask alsa-utils

启动声音服务

大专栏   Linux 声卡驱动问题lass="highlight plain">
1
2
/etc/init.d/alsasound start
rc-update add alsasound boot ###声音服务设置boot级别

列出设备名

1
cat /sys/class/sound/card*/id

配置默认设备

1
vi ~/.asoundrc

最后,别忘了重启一下。

参考链接1

参考链接2

猜你喜欢

转载自www.cnblogs.com/lijianming180/p/12409987.html
今日推荐