内核 4.4.1 的 Linux 映像附加项

内核 4.4.1 的 Linux 映像附加项

我正在尝试使用docker,但仍然停留在安装过程中(基于docker 安装页面),对此:

sudo apt-get install linux-image-extra-$(uname -r)

它给我错误:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package linux-image-extra-4.4.1-040401-generic
E: Couldn't find any package by regex 'linux-image-extra-4.4.1-040401-generic'

顺便说一下,我在 Ubuntu 14.04 上使用内核 4.4.1。

那么,如果我无法从 repo 或从中获取此 linux-image-extra 软件包,我该如何安装它?内核.ubuntu.com?? 有什么提示吗?

谢谢。

答案1

该图像是在没有extra包的情况下构建的。

所以你不需要安装那个包。只需安装这些:

http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.1-wily/linux-headers-4.4.1-040401-generic_4.4.1-040401.201601311534_amd64.deb
http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.1-wily/linux-headers-4.4.1-040401_4.4.1-040401.201601311534_all.deb
http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.1-wily/linux-image-4.4.1-040401-generic_4.4.1-040401.201601311534_amd64.deb

如果您的系统是 64 位的话就是这样。

最简单的方法是将 debs 下载到你的主文件夹并运行:

sudo dpkg -i linux-headers-4.4.1*.deb linux-image-4.4.1*.deb

相关内容