我的内核是 5.13.0-37-generic 版本。
>uname -r
5.13.0-37-generic
我需要为它安装标题,但是当我运行时
>apt search linux-headers-$(uname -r)
什么也没找到。最接近的标头版本是
>sudo apt search linux-headers
Sorting... Done
Full Text Search... Done
linux-headers-5.13.0-35-generic/now 5.13.0-35.40~20.04.1 amd64 [installed,local]
Linux kernel headers for version 5.13.0 on 64 bit x86 SMP
我该怎么做才能解决这个问题?我是 Linux 新手,请解释一下如何解决这个问题。
更新升级。
Hit:1 http://downloads.metasploit.com/data/releases/metasploit-framework/apt lucid InRelease
Hit:2 http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal InRelease
Hit:3 http://dl.google.com/linux/chrome/deb stable InRelease
Get:4 http://archive.ubuntu.com/ubuntu focal InRelease [265 kB]
Hit:5 https://deb.nodesource.com/node_18.x focal InRelease
Hit:6 http://ppa.launchpad.net/linuxuprising/java/ubuntu focal InRelease
Hit:7 https://repo.pritunl.com/stable/apt focal InRelease
Hit:8 http://ppa.launchpad.net/obsproject/obs-studio/ubuntu focal InRelease
Get:9 http://archive.ubuntu.com/ubuntu focal/main amd64 Packages [970 kB]
Get:10 http://archive.ubuntu.com/ubuntu focal/main i386 Packages [718 kB]
Get:11 http://archive.ubuntu.com/ubuntu focal/main Translation-en [506 kB]
Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 DEP-11 Metadata [494 kB]
Get:13 http://archive.ubuntu.com/ubuntu focal/main DEP-11 48x48 Icons [98,4 kB]
Get:14 http://archive.ubuntu.com/ubuntu focal/main DEP-11 64x64 Icons [163 kB]
Get:15 http://archive.ubuntu.com/ubuntu focal/main DEP-11 64x64@2 Icons [15,8 kB]
Get:16 http://archive.ubuntu.com/ubuntu focal/main amd64 c-n-f Metadata [29,5 kB]
Get:17 http://archive.ubuntu.com/ubuntu focal/universe i386 Packages [4 642 kB]
Get:18 http://archive.ubuntu.com/ubuntu focal/universe amd64 Packages [8 628 kB]
Get:19 http://archive.ubuntu.com/ubuntu focal/universe Translation-en [5 124 kB]
Get:20 http://archive.ubuntu.com/ubuntu focal/universe amd64 DEP-11 Metadata [3 603 kB]
Get:21 http://archive.ubuntu.com/ubuntu focal/universe DEP-11 48x48 Icons [3 016 kB]
Get:22 http://archive.ubuntu.com/ubuntu focal/universe DEP-11 64x64 Icons [7 794 kB]
Get:23 http://archive.ubuntu.com/ubuntu focal/universe DEP-11 64x64@2 Icons [44,3 kB]
Get:24 http://archive.ubuntu.com/ubuntu focal/universe amd64 c-n-f Metadata [265 kB]
Get:25 http://archive.ubuntu.com/ubuntu focal/restricted i386 Packages [8 112 B]
Get:26 http://archive.ubuntu.com/ubuntu focal/restricted amd64 Packages [22,0 kB]
Get:27 http://archive.ubuntu.com/ubuntu focal/restricted Translation-en [6 212 B]
Get:28 http://archive.ubuntu.com/ubuntu focal/restricted amd64 c-n-f Metadata [392 B]
Get:29 http://archive.ubuntu.com/ubuntu focal/multiverse i386 Packages [74,7 kB]
Get:30 http://archive.ubuntu.com/ubuntu focal/multiverse amd64 Packages [144 kB]
Get:31 http://archive.ubuntu.com/ubuntu focal/multiverse Translation-en [104 kB]
Get:32 http://archive.ubuntu.com/ubuntu focal/multiverse amd64 DEP-11 Metadata [48,4 kB]
Get:33 http://archive.ubuntu.com/ubuntu focal/multiverse DEP-11 48x48 Icons [23,1 kB]
Get:34 http://archive.ubuntu.com/ubuntu focal/multiverse DEP-11 64x64 Icons [192 kB]
Get:35 http://archive.ubuntu.com/ubuntu focal/multiverse DEP-11 64x64@2 Icons [214 B]
Get:36 http://archive.ubuntu.com/ubuntu focal/multiverse amd64 c-n-f Metadata [9 136 B]
Fetched 37,0 MB in 10s (3 702 kB/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
All packages are up to date.
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
/etc/apt/sources.list 内容
> cat /etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu focal main universe restricted multiverse
deb-src http://archive.ubuntu.com/ubuntu focal main universe restricted multiverse #Added by software-properties
答案1
当前 HWE 内核为5.13.0-40
。您需要先更新系统。
更新存储库似乎已被禁用。运行以下命令main
恢复默认设置:sources.list
sudo rm /etc/apt/sources.list
打开“软件和更新”应用程序并启用第一个选项卡上的所有存储库main
。
另外,在更新选项卡中将其更改为“全部”。
然后运行
sudo apt update
sudo apt upgrade
您将获得当前内核。重新启动以运行此内核。然后您将能够通过以下方式安装标头:
sudo apt install linux-headers-5.13.0-40-generic