如何在 Ubuntu 14.04 LTS 中安装 Ubuntu 14.10 的内核?

如何在 Ubuntu 14.04 LTS 中安装 Ubuntu 14.10 的内核?

我已经能够从 ubuntu 主线内核存储库下载内核 3.16。但是,我更感兴趣的是,Ubuntu 14.10 默认附带的内核是否可以安装在 Ubuntu 14.04 LTS 中。

请注意,主线 3.16 内核与 Ubuntu 14.10 附带的内核略有不同,我对后者感兴趣。并且,这个答案这不是我想要的。

答案1

有一个更好的办法:

sudo apt-get install linux-image-generic-lts-utopic

这是来自: 如何在 Ubuntu 14.04 上安装 3.16 内核

答案2

  1. 添加 Utopic 主存储库

    sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu utopic main"
    
  2. 更新软件包列表

    sudo apt-get update
    
  3. 更新内核元包以安装最新版本

    sudo apt-get install linux-generic
    
  4. 删除存储库,以避免对其他软件包进行任何有害的更新

    sudo add-apt-repository -r "deb http://archive.ubuntu.com/ubuntu utopic main"
    
  5. 更新软件包列表

    sudo apt-get update
    

已测试:

~$ uname -a
Linux machine 3.16.0-23-generic #31-Ubuntu SMP Tue Oct 21 17:56:17 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
~$ lsb_release -rc
Release:    14.04
Codename:   trusty

笔记:

要更新内核,请按照相同的步骤,仅使用更新存储库:

"deb http://archive.ubuntu.com/ubuntu utopic-updates main"

如果您只想要安全更新,请使用:

"deb http://archive.ubuntu.com/ubuntu utopic-security main"

相关内容