Ubuntu 14.04 无法识别声卡

Ubuntu 14.04 无法识别声卡

大家下午好!我会客观地看待我的问题。

之前我在笔记本上使用 Windows 8,在台式机上使用 ubuntu。我决定在笔记本上测试更新 14.04,安装后运行正常,但有一天我打电话时声音不再起作用,我去查看音频配置,发现他无法识别声卡。有人能帮我吗?

$ aplay: device_list:268: No sound card found...

$ lspci -v | grep -A7 -i "audio"
00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
    Subsystem: COMPAL Electronics Inc Device 0032
    Flags: fast devsel, IRQ 22
    Memory at f2a00000 (64-bit, non-prefetchable) [size=16K]
    Capabilities: <access denied>

00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0

打印配置

打印我的配置

答案1

我也遇到了同样的问题。您可以使用以下命令解决:

sudo aptitude --purge reinstall linux-sound-base alsa-base alsa-utils linux-image-`uname -r` linux-ubuntu-modules-`uname -r` libasound2

然后只需重新启动计算机即可。

答案2

我正在运行不同版本的 Linux(基于 Ubuntu),但我的问题是由硬件引起的,所以我的解决方案可能会对某些人有所帮助。

我在 Dell XPS 13 (9360) 上运行 Linux Mint 18.1 Cinnamon。我遇到了类似的问题;声音停止工作,重新启动也无法解决问题。当我运行 aplay 时,我看到:

aplay: device_list:268: No sound card found...

看来 XPS 的声音存在缺陷,有时会因插入耳机或低电量关机而引发。

https://wiki.archlinux.org/index.php/Dell_XPS_15#Sound

https://bugs.archlinux.org/task/49157

对我有用的是:

  1. 启动时按 F2 进入 Bios

  2. 在系统配置>音频中,取消选中该框以完全禁用声音。

  3. 保存更改并继续启动。

  4. 重新启动计算机,再次进入 BIOS 并重新启用声音。

  5. 保存更改并继续启动。

答案3

aplay: device_list:268: No sound card found...使用后,我aplay l按照下面的 Ubuntu 故障排除指南进行了安装,apt install linux-generic并在重新启动后,它在 ova 中的 Ubuntu Server 20.04 中找到了来自 VirtualBox 的声卡。

https://help.ubuntu.com/community/SoundTroubleshooting

相关内容