答案1
这些是内核和内核头更新,是系统的主要安全更新。因此,它们在安全方面是必需的。您可以通过终端中的命令安装它们:
通过组合键 ++ 打开终端CTRL并输入以下命令:ALTT
sudo apt-get update
sudo apt-get upgrade
然后重新启动系统使它们生效。
答案2
你有内核头文件,所以你应该运行
sudo apt-get update
sudo apt-get dist-upgrade
来自 apt-get
dist-upgrade
dist-upgrade in addition to performing the function of upgrade,
also intelligently handles changing dependencies with new versions
of packages; apt-get has a "smart" conflict resolution system, and
it will attempt to upgrade the most important packages at the
expense of less important ones if necessary. So, dist-upgrade
command may remove some packages. The /etc/apt/sources.list file
contains a list of locations from which to retrieve desired package
files. See also apt_preferences(5) for a mechanism for overriding
the general settings for individual packages
如果你收到通知,你应该删除一些较旧的依赖项运行
sudo apt-get autoclear && sudo apt-get autoremove
这里有完整的 apt-get 指南