211
80
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?
211
80
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?
269
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 have been attempts to make this consistent, but ultimately it 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 exist on most of the common platforms, and on their derivatives (i.e., Red Hat and CentOS).
Here are some examples.
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/older CentOS: $ cat /etc/redhat-release
CentOS release 5.3 (Final)
newer CentOS: $ cat /etc/centos-release
CentOS Linux release 7.1.1503 (Core)
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
and/or /etc/slackware-version
.
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.
Related: How to find out version of software package installed on the node?, puppet.
42
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 the login screen.
2Ha, on RedHat, that's just \S[newline]Kernel \r on an \m
– ruffin – 2015-02-02T20:21:27.913
2This is the only one that nailed it for me on a shared Media Temple server. Thanks!! – TryTryAgain – 2013-02-08T18:03:46.563
20
Kernel: uname -a
+1. For similar systems, like MinGW, the "-a" is required to get the version information, for example, "MINGW32_NT-5.1 LAP065 1.0.17(0.48/3/2) 2011-04-24 23:39 i686 Msys".
– Peter Mortensen – 2012-05-02T08:39:26.14316
cat /etc/os-release
at a minimum for Ubuntu, Fedora and OpenSUSE.
Does not work for OS X at least until 10.9 (Mavericks). Use sw_vers instead.
OpenSUSE had cat /etc/SuSE-release up until 13.1 but is deprecated in favour of os-release.
Redhat 6.1 has cat /etc/redhat-release
1
DOC: https://www.freedesktop.org/software/systemd/man/os-release.html
– pevik – 2016-11-03T08:55:12.80314
lsb_release -a
, when available, is useful.
12
cat /proc/version
found me Red Hat on a shared VPS.
6
Kernel: uname -r
Distro: lsb_release -a
These will run on most Linux systems
5
lsb_release -a && uname -r
1This might be more appropriate as a comment on Albert Z's answer. – fixer1234 – 2018-01-29T21:52:40.740
1mighty answer to conclude all answers! I must upvote for the effort :) – B.Kocis – 2018-03-27T13:17:12.960
1
This issue can also be solved using Python with the platform
module:
Using platform()
function:
python -c 'import platform; print platform.platform()'
# Linux-4.9.0-8-amd64-x86_64-with-debian-9.6
The above command returns a single string identifying the underlying platform with as much useful information as possible.
Or using uname()
function:
python -c 'import platform; print platform.uname()'
# ('Linux', 'debian', '4.9.0-8-amd64', '#1 SMP Debian 4.9.130-2 (2018-10-27)', 'x86_64', '')
The above command returns a namedtuple()
containing six attributes: system
, node
, release
, version
, machine
, and processor
.
Or using dist()
function:
python -c 'import platform; print platform.dist()'
# ('debian', '9.6', '')
The last command tries to determine the name of the Linux OS distribution name, but it is deprecated since Python 3.5 and will be removed in Python 3.8.
SuSE:
cat /etc/SuSE-release
(just tested, it works) – kol – 2018-07-25T22:00:16.7203Lol here I was thinking to suggest: look for About! – Ivo Flipse – 2009-07-22T19:40:05.760
2Slackware has /etc/slackware-version – Ken Keenan – 2009-07-22T19:45:26.590
Thanks Ken, I don't have a slackware system either. – jtimberman – 2009-07-22T19:56:07.687
4IOW: ls /etc/*{release,version} and examine whatever comes back... – freiheit – 2009-07-22T20:11:12.690
freiheit, you ought to put that in a separate answer. – Daryl Spitzer – 2009-07-22T21:42:05.653
Mandriva has /etc/mandriva-release – erichui – 2009-07-23T02:16:25.027
1Most also have /etc/issue – Drew Stephens – 2009-07-23T06:42:51.180
@dinomite Indeed, and many put that information there, but it shouldn't be considered definitive, and is often used for access banners as I had added to the answer earlier. – jtimberman – 2009-07-23T07:10:10.397