Linux-Kernel

Linux 核心升級後安裝匹配的 Linux 標頭檔

  • June 10, 2020

我最近將我的 Linux 核心從 4.19.20 升級到了 5.5.0-0.bpo.2-amd64。

sudo apt install linux-headers-$(uname -r)輸出:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
linux-headers-5.5.0-0.bpo.2-amd64 is already the newest version (5.5.17-1~bpo10+1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

ls -l /usr/src/linux-headers-$(uname -r)給我:

total 1432
drwxr-xr-x 3 root root    4096  6月 10 23:54 arch
drwxr-xr-x 4 root root    4096  6月 10 23:54 include
-rw-r--r-- 1 root root      61  4月 23 23:15 Makefile
-rw-r--r-- 1 root root 1453072  4月 23 23:15 Module.symvers
lrwxrwxrwx 1 root root      34  4月 23 23:15 scripts -> ../../lib/linux-kbuild-5.5/scripts
lrwxrwxrwx 1 root root      32  4月 23 23:15 tools -> ../../lib/linux-kbuild-5.5/tools

這是否意味著已經安裝了匹配的Linux標頭檔?

是的,這意味著標頭已安裝。

另請參閱(這些是重要位置)中的buildsource符號連結。/lib/modules/$(uname -r)

引用自:https://unix.stackexchange.com/questions/592108