系统相关
首页 > 系统相关> > ubuntu禁止内核自动更新

ubuntu禁止内核自动更新

作者:互联网

Ubuntu 内核会经常自动更新,有时候系统重启时有可能会碰到以下问题:

1.Nvidia 显卡驱动找不到了,可能是因为内核版本与之前安装的驱动版本不匹配
2.导致循环登入问题,一直登入不进去

 

如何禁止自动更新?

1.查看系统安装的内核有哪些

  dpkg --get-selections | grep linux-image

 

2.查看系统正在使用的内核

  uname -a

 

 

3.将系统正在使用的内核设置为禁止自动更新

  sudo apt-mark hold linux-image-4.15.0-142-generic

  sudo apt-mark hold linux-modules-extra-4.15.0-142-generic

 

如果你最后想把自动更新换回来,你可以使用以下命令

  sudo apt-mark unhold linux-image-4.15.0-142-generic
  sudo apt-mark unhold linux-modules-extra-4.15.0-142-generic

 

参考:https://www.codenong.com/cs105454293/

 

标签:4.15,generic,ubuntu,apt,内核,自动更新,linux
来源: https://www.cnblogs.com/smartcoding/p/15353414.html