4

Hy!

How can i update my 16.04.1 to 16.04.3 ?

I tried:

sudo apt update
sudo apt upgrade
sudo apt dist-upgrade

But

uname -a

said :

Linux lawyer 4.10.0-35-generic #39~16.04.1-Ubuntu SMP Wed Sep 13 09:02:42 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
Byte Commander
  • 107,489

1 Answers1

9

Although your kernel build string contains "16.04.1", you are probably running all up to date.

Your kernel build string does not indicate the state of the packages your system has installed. The tool to use is lsb_release. E.g.:

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 16.04.3 LTS
Release:        16.04
Codename:       xenial

Your kernel installed appears to be the hardware enablement variant: linux-image-generic-hwe-16.04. The one you are running is the latest one available.

gertvdijk
  • 67,947