首页 > 系统相关 >linux系统报错AER PCIe Bus Error

linux系统报错AER PCIe Bus Error

时间:2024-03-14 09:11:06浏览次数:17  
标签:AER grub Bus sudo etc 报错 Error

1、报错信息

pcieport 0000:00:1c.7: AER: PCIe Bus Error: severity=Corrected, type=Physical Layer, (Receiver ID) device [8086:a33f] error status/mask=00000001/00002000 [ 0[ RxErr

2、修改grub文件

//备份 grub
sudo cp /etc/default/grub /etc/default/grub.bak
//随便用什么编辑都行 vi vim nano dedit
sudo dedit /etc/default/grub
//下面这一句
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
//加上 “pcie_aspm=off” 改成 :
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pcie_aspm=off"
//将 grub 文件 保存后 刷新 grub
sudo update-grub
//重启
sudo reboot

转载:https://blog.csdn.net/Hankrise/article/details/109028911

标签:AER,grub,Bus,sudo,etc,报错,Error
From: https://www.cnblogs.com/xn0614/p/18072070

相关文章

  • docker系列-报错以及解决指南
    1.windows运行docker报错WindowsHypervisorisnotpresentDockerDesktopisunabletodetectaHypervisor.HardwareassistedvirtualizationanddataexecutionprotectionmustbeenabledintheBIOS.DockerDesktop-WindowsHypervisorisnotpresentDockerDeskto......
  • 基于ts的node项目引入报错归纳
    一、导入类型定义文件错误node_modules/@types/leaflet/index.d.ts:128:1128export=e;Thismoduleisdeclaredwith'export=',andcanonlybeusedwithadefaultimportwhenusingthe'esModuleInterop'flag.这个错误表明使用export=语法,但TypeSc......
  • ORACLE 19C 报错总结
    使用sys用户登录sqlplus后,startup命令启动Oracle时报ORA-01078和LRM-00109错误,如下所示:SQL>conn/assysdbaConnectedtoanidleinstance.SQL>startupORA-01078:failureinprocessingsystemparametersLRM-00109:couldnotopenparameterfile'/home/oracle......
  • Vite构建的前端项目在执行 "npm run dev" 命令时报错 "failed to load vite.config.ts
    报错信息:Failedtoloadconfigfromxx/.../xx/vite.config.tserrorduringbuild:Error:Youinstalledesbuildforanotherplatformthantheoneyou'recurrentlyusing.Thiswon'tworkbecauseesbuildiswrittenwithnativecodeandneedstoinstal......
  • 记录解决HttpServletResponse在参数报错的问题
    下载excel功能需要用到HttpServletResponse,注入一直报错,java.lang.IllegalStateException:getOutputStream()hasalreadybeencalledforthisresponse@ResourceHttpServletResponsehttpServletResponse;使用注入的方法没问题刚开始用的gson报栈溢出的错误,后......
  • pip 升级后runpy.py报错
    报错信息: pip的版本冲突解决办法:https://pypi.org/project/pip/19.3.1/下载符合版本的pip,pip-19.3.1-py2.py3-none-any.whl ,将.whl改成.zip,解压后替换Programs\Python\Python37\Lib\site-packages中的pip文件 打开dos:piplist,OK ......
  • vagrant up 启动报错 Stderr: VBoxManage.exe: error: A NAT rule of this name alrea
    报错:使用vagrantup启动VirtualBox虚拟机时报错:Stderr:VBoxManage.exe:error:ANATruleofthisnamealreadyexistsVBoxManage.exe:error:Details:codeE_INVALIDARG(0x80070057),componentNATEngineWrap,interfaceINATEngine,calleeIUnknownVBoxManage.exe:e......
  • mysql卸载安装及其报错解决
    数据库软件机制复杂,解决它的相关问题的时候最有效的方法是dos命令。在删除,修改密码和处理报错的时候,往往只要dos命令正确发挥作用,不会引发别的问题而若是直接对mysql下的各种文件进行修改极易引发未知问题,应谨慎。为不使安装过程产生报错应该先在以下几个方面进行清理。1......
  • npm启动vue项目报错error:0308010C:digital envelope routines::unsupported的解决办
    错误截图解决方法package.json文件中修改dev项为setNODE_OPTIONS=--openssl-legacy-provider&vue-cli-serviceserve:"scripts":{"dev":"setNODE_OPTIONS=--openssl-legacy-provider&vue-cli-serviceserve","build:prod......
  • 彻底解决Qt报错:无法定位程序输入点于动态链接库
    彻底解决Qt报错:无法定位程序输入点于动态链接库问题描述前段时间使用QtCreator写程序,在最后打包的时候出错,期间尝试修改环境变量的顺序,后来发现不是环境变量的问题,但问题解决后并未将环境变量改回,导致今天使用VS2017联合Qt编译之前程序(之前已验证正确)的时候报错,具体错误信息如......