错误“*错误* UVD 没有响应,正在尝试重置 VCPU!!!”

错误“*错误* UVD 没有响应,正在尝试重置 VCPU!!!”

当我启动系统时出现以下错误。

现在我正在使用恢复模式,我该怎么办?

*ERROR* UVD not responding, trying to reset the VCPU!!!
*ERROR* UVD not responding, trying to reset the VCPU!!!
*ERROR* UVD not responding, trying to reset the VCPU!!!
*ERROR* UVD not responding, trying to reset the VCPU!!!
*ERROR* UVD not responding, trying to reset the VCPU!!!
*ERROR* UVD not responding, trying to reset the VCPU!!!
*ERROR* UVD not responding, trying to reset the VCPU!!!
*ERROR* UVD not responding, trying to reset the VCPU!!!
*ERROR* UVD not responding, trying to reset the VCPU!!!
*ERROR* UVD not responding, trying to reset the VCPU!!!
*ERROR* UVD not responding, trying to reset the VCPU!!!
*ERROR* UVD not responding, trying to reset the VCPU!!!
*ERROR* UVD not responding, trying to reset the VCPU!!!

答案1

我遇到了非常类似的问题,并通过编辑默认 grub 文件修复了它

  sudo nano /etc/default/grub

并改变路线

  GRUB_CMDLINE_LINUX=""

  GRUB_CMDLINE_LINUX="radeon.modeset=0"

然后保存文件并更新 grub

  sudo update-grub

并重新启动。如果上述方法不起作用,那么也许可以尝试更改

  GRUB_CMDLINE_LINUX="radeon.modeset=0"

  GRUB_CMDLINE_LINUX="nomodeset"

. 使用以下命令检查 dmesg 日志中的错误

 dmesg | grep radeon

如果上述方法有效,只是为了确保一切正常。

答案2

这是因为您的显卡驱动程序出现故障。首先卸载外部显卡驱动程序。然后安装最新版本的显卡驱动程序。为了更详细地解释,我需要知道您的显卡详细信息。

运行此命令以获取显示详细信息

sudo lshw -c display

相关内容