0
~$ uname -a

Linux 3.16.0-30-generic #40~14.04.1-Ubuntu SMP Thu Jan 15 17:45:15 UTC 2015 i686 i686 i686 GNU/Linux

~$ lsb_release -a

No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.2 LTS
Release:    14.04
Codename:   trusty

Are they differ in something I mean command outputs or what? I didn't do anything wrong as I recall.

JoKeR
  • 6,972
  • 9
  • 43
  • 65

2 Answers2

0

There actually is only one release 14.04. You have the kernel that is used in an update. These updates are there so that someone who installs Ubuntu now, does not have to completely reinstall all the packages in LTS release.

No matter how you install you will end up with what you have now.

Osis
  • 703
  • but when I run apt-cache policy linux-generic I get Installed: (none) Candidate: 3.13.0.46.53 – JoKeR Mar 04 '15 at 12:21
0

uname - get name and information about current kernel

lsb_release --

print distribution specific information

The lsb_release command prints certain LSB (Linux Standard Base) and Distribution information.

Source:Man Pages

Mitch
  • 107,631