Debian Linux 安装无法播放声音

Debian Linux 安装无法播放声音

我正在尝试让我的 Linux 安装来播放音乐。我有 debian Linux。 /etc/debian_version 的内容是: 6.0.2 我的扬声器似乎无法播放任何声音,在浏览了论坛帖子后,我遇到了麻烦。 lspci | grep Audio给出以下结果:

02:00.0 PCI bridge: Creative Labs [SB X-Fi Xtreme Audio] CA0110-IBG PCI to PCIe Bridge
03:00.0 Audio device: Creative Labs [SB X-Fi Xtreme Audio] CA0110-IBG
0a:00.1 Audio device: ATI Technologies Inc Cypress HDMI Audio [Radeon HD 5800 Series]

当我尝试运行扬声器测试命令时,出现以下错误:

Playback open error: -16,Device or resource busy

因此,我寻找可能阻止声卡的进程:(lsof | grep snd从某些论坛获取的命令)。一旦进程被终止,我会收到以下错误:

Write error: -5,Input/output error
xrun_recovery failed: -5,Input/output error
Transfer failed: Operation not permitted

答案1

发布以下输出:
1. lsmod | grep snd
2. cat /proc/asound/cards
3. aplay -L
4. 尝试像这样播放声音aplay -D hw:0,0 /usr/share/sounds/alsa/Front_Center.wav
5.groups | grep audio

顺便说一句,alsa 有很好的描述这里

答案2

我遇到了这个问题,我修复了安装 Pulseaudio 软件包的问题。

你可以尝试:

apt-get update
apt-get install pulseaudio

相关内容