vote up 9 vote down star
2

Is there a way to determine what version (distribution & kernel version, I suppose) of Linux is running (from the command-line), that works on any Linux system?

flag

79% accept rate

4 Answers

vote up 29 vote down check

The kernel is universally detected with 'uname':

$ uname -or
2.6.18-128.el5 GNU/Linux

There really isn't a cross-distribution way to determine what distribution and version you're on. There are attempts to make this consistent, but it ultimately varies, unfortunately. LSB tools provide this information, but ironically aren't installed by default everywhere. Example on an Ubuntu 9.04 system with the lsb-release package installed:

$ lsb_release -irc
Distributor ID: Ubuntu
Release:        9.04
Codename:       jaunty

Otherwise, the closest widely-available method is checking "/etc/something-release" files. These are common on most of the common platforms, or on their derivatives (ie Red Hat and CentOS).

Here's some examples.

For example, Ubuntu has /etc/lsb-release:

cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=9.04
DISTRIB_CODENAME=jaunty
DISTRIB_DESCRIPTION="Ubuntu 9.04"

But Debian has /etc/debian_version:

cat /etc/debian_version
5.0.2

Fedora, Red Hat and CentOS have:

Fedora: cat /etc/fedora-release
Fedora release 10 (Cambridge)
Red Hat/CentOS: cat /etc/redhat-release
CentOS release 5.3 (Final)

Gentoo:

cat /etc/gentoo-release
Gentoo Base System release 1.12.11.1

I don't have a SUSE system available at the moment, but I believe it is /etc/SuSE-release.

Slackware has /etc/slackware-release.

Mandriva has /etc/mandriva-release.

For most of the popular distributions then,

cat /etc/*{release,version}

Will most often work. Stripped down and barebones "server" installations might not have the 'release' package for the distribution installed.

Additionally, two 3rd party programs you can use to automatically get this information are Ohai and Facter.

Note that many distributions have this kind of information in /etc/issue or /etc/motd, but some security policies and best practices indicate that these files should contain access notification banners.

link|flag
2  
Lol here I was thinking to suggest: look for About! – Ivo Jul 22 at 19:40
1  
Slackware has /etc/slackware-version – Ken Keenan Jul 22 at 19:45
Thanks Ken, I don't have a slackware system either. – jtimberman Jul 22 at 19:56
1  
IOW: ls /etc/*{release,version} and examine whatever comes back... – freiheit Jul 22 at 20:11
freiheit, you ought to put that in a separate answer. – Daryl Spitzer Jul 22 at 21:42
show 4 more comments
vote up 6 vote down

You could also try:

$ cat /etc/issue

It usually (not always, though) will tell you what distribution you are using. /etc/issue is the file used for login screen.

link|flag
vote up 3 vote down

Kernel: uname -a

link|flag
vote up 1 vote down

lsb_release -a, when available, is useful.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.