我的笔记本电脑无法识别声卡,只有假音频。运行时inxi -A
我收到以下信息:
Audio:
Device-1: Intel Sunrise Point-LP HD Audio driver: N/A
Device-2: NVIDIA GP107GL High Definition Audio driver: snd_hda_intel
Sound Server-1: ALSA v: k5.19.0-21-generic running: yes
Sound Server-2: PipeWire v: 0.3.58 running: yes
我尝试了建议的解决方案,例如安装 WirePlumber 或重新启动 PulseAudio,但它们不起作用。
答案1
systemctl --user enable pulseaudio
systemctl --user start pulseaudio
我遇到了同样的问题并按照链接中的步骤操作。
答案2
我遇到了同样的问题,并按照上述链接中的步骤操作
sudo touch /usr/share/pipewire/media-session.d/with-pulseaudio
sudo systemctl --user restart pipewire-session-manager
sudo reboot now
解决了 !!!!
答案3
我也遇到了同样的问题,不过是针对 AMD 卡的:
Audio:
Device-1: AMD Renoir Radeon High Definition Audio driver: snd_hda_intel
Device-2: AMD Raven/Raven2/FireFlight/Renoir Audio Processor
driver: snd_rn_pci_acp3x
Device-3: AMD Family 17h HD Audio driver: snd_hda_intel
Sound Server-1: ALSA v: k5.19.0-21-generic running: yes
Sound Server-2: PipeWire v: 0.3.58 running: yes
对我来说,引导到 22.04 最新内核很有帮助
Linux tsebo-T14 5.15.0-52-generic #58-Ubuntu SMP Thu Oct 13 08:03:55 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
使用 5.15.0-52-generic 启动 ubuntu 后,声音驱动程序恢复并按预期工作。
答案4
尝试这个(如果您需要在每次重启后自动启动 pulseaudio);
使用以下方法移除 Pipewire
sudo apt remove pipewire
使用以下方式启用 Pulseaudio
systemctl --user enable pulseaudio.service pulseaudio.socket
pulseaudio --start
现在使用或启动 pulseaudiosystemctl --user start pulseaudio.service pulseaudio.socket
现在重新启动。