Why kernel version doesn't match Ubuntu version in a Docker container?

jcm

I have a Docker container built from Ubuntu 14.10. When I log in to the container to check the Ubuntu version and kernel version I see the following:

root@~$>> lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.10
Release:    14.10
Codename:   utopic   

root@~$>> uname -a
    Linux ambiata-aws 3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

I thought that Ubuntu 14.10 was supposed to be kernel version 3.16 (as stated here), so why do I have kernel version 3.13.0-24-generic ?

The reason I am asking is because there is a patch in 3.13.0-29-generic that I would like to have (that is, having fallocate working on AUFS in my docker container) which is discussed here.

Eric Carvalho

From What is Docker?:

LIGHTWEIGHT

Containers running on a single machine share the same operating system kernel; they start instantly and use less RAM. Images are constructed from layered filesystems and share common files, making disk usage and image downloads much more efficient.

Containers run on the host OS kernel. In your case, the host could be a Ubuntu 14.04 (running the original kernel) or a Ubuntu 12.04 (running kernel from trusty's hardware enablement stack).

If the host is Ubuntu 14.04 you could install kernel 3.16:

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

Or kernel 3.19:

sudo apt-get install linux-generic-lts-vivid

For Ubuntu 12.04, kernel 3.13 is latest official one.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Why kernel version doesn't match Ubuntu version in a Docker container?

From Dev

Why doesn't the latest Ubuntu edition come with the latest stable Linux kernel version?

From Dev

Why doesn't the latest Ubuntu edition come with the latest stable Linux kernel version?

From Dev

GLSL version doesn't match OpenGL version

From Dev

Jenkins version doesn't match

From Dev

Why Ubuntu doesn't upgrade to the latest version of GnuPG?

From Dev

Why Ubuntu doesn't upgrade to the latest version of GnuPG?

From Dev

Verify the version of ubuntu running in a Docker container

From Dev

PHP (cli) version doesn't match XAMPP version I installed

From Dev

Why 'perf' needs to match the exact running Linux kernel version?

From Dev

Linux kernel version and GCC version match

From Dev

Why serializing Version with JsonPropertyAttribute doesn't work?

From Dev

Kernel version doesn't update in uname -r (Arch Linux)

From Dev

finding kernel version in the docker image

From Dev

Compiling a kernel version(Ubuntu/Debian)

From Dev

Why doesn't docker container start at boot w/ upstart script on Ubuntu 12.04?

From Dev

Why doesn't the new version of Ubuntu 10.10 show up in Update Manager?

From Dev

Why doesn't gcc or build-essential install the latest version of GCC (9 as of today) on Ubuntu 18.04 LTS?

From Dev

Downgrade docker windows container version

From Java

Intellij, target JRE vesion doesn't match project jdk version

From Dev

VirtualBox kernel modules do not match this version of VirtualBox

From Dev

VirtualBox kernel modules do not match the version of VirtualBox

From Dev

Google play: required android version doesn't match manifest minSdk version

From Dev

Docker minimum kernel version 3.8.13 or 3.10

From Dev

Docker returning same kernel version for 10.04 and 10.10

From Dev

Ubuntu Studio 17.04 - apt doesn't see the latest version of qbittorrent

From Dev

Virtualbox in a Ubuntu Docker Container is missing Kernel Headers

From Dev

When will Ubuntu 20.04 upgrade the kernel version?

From Dev

List of Ubuntu Versions with Corresponding Linux Kernel Version

Related Related

  1. 1

    Why kernel version doesn't match Ubuntu version in a Docker container?

  2. 2

    Why doesn't the latest Ubuntu edition come with the latest stable Linux kernel version?

  3. 3

    Why doesn't the latest Ubuntu edition come with the latest stable Linux kernel version?

  4. 4

    GLSL version doesn't match OpenGL version

  5. 5

    Jenkins version doesn't match

  6. 6

    Why Ubuntu doesn't upgrade to the latest version of GnuPG?

  7. 7

    Why Ubuntu doesn't upgrade to the latest version of GnuPG?

  8. 8

    Verify the version of ubuntu running in a Docker container

  9. 9

    PHP (cli) version doesn't match XAMPP version I installed

  10. 10

    Why 'perf' needs to match the exact running Linux kernel version?

  11. 11

    Linux kernel version and GCC version match

  12. 12

    Why serializing Version with JsonPropertyAttribute doesn't work?

  13. 13

    Kernel version doesn't update in uname -r (Arch Linux)

  14. 14

    finding kernel version in the docker image

  15. 15

    Compiling a kernel version(Ubuntu/Debian)

  16. 16

    Why doesn't docker container start at boot w/ upstart script on Ubuntu 12.04?

  17. 17

    Why doesn't the new version of Ubuntu 10.10 show up in Update Manager?

  18. 18

    Why doesn't gcc or build-essential install the latest version of GCC (9 as of today) on Ubuntu 18.04 LTS?

  19. 19

    Downgrade docker windows container version

  20. 20

    Intellij, target JRE vesion doesn't match project jdk version

  21. 21

    VirtualBox kernel modules do not match this version of VirtualBox

  22. 22

    VirtualBox kernel modules do not match the version of VirtualBox

  23. 23

    Google play: required android version doesn't match manifest minSdk version

  24. 24

    Docker minimum kernel version 3.8.13 or 3.10

  25. 25

    Docker returning same kernel version for 10.04 and 10.10

  26. 26

    Ubuntu Studio 17.04 - apt doesn't see the latest version of qbittorrent

  27. 27

    Virtualbox in a Ubuntu Docker Container is missing Kernel Headers

  28. 28

    When will Ubuntu 20.04 upgrade the kernel version?

  29. 29

    List of Ubuntu Versions with Corresponding Linux Kernel Version

HotTag

Archive