vote up 6 vote down star
4

Sometimes I need to access some servers running Linux (or maybe another Unix-like SO), but I don't know how to verify which distro is in use on the server (there are times that even the "responsible" for the server doesn't know).

Is there a easy and reliable way to discover that, one that is uniform and consistent across all of them?

flag

9 Answers

vote up 11 vote down check

lsb_release -i may work for you.

More detail is available with lsb_release -a

Some discussion at http://etbe.coker.com.au/2007/08/30/identifying-the-distribution-of-a-linux-system/

link|flag
lsb_release -d gave a much better result for me. -i gave "Distributor ID: CentOS". -d gave "Description: CentOS release 5.2 (Final)". – nickf Mar 4 at 14:21
Very usefull to me thanks! – ojblass Mar 24 at 16:04
vote up 2 vote down

You should ask yourself if you really need to know which distro is in use (perhaps because you want to build a package specific for this distribution). In many other cases it is a far better idea, to just test and see if the features you need are there or not. This might look like a lot more work because you have to test every feature one by one but this way, your software becomes far more flexible.

link|flag
something like what 'configure' do, huh? good point – Seiti Nov 5 '08 at 14:53
Yupp, something like configure or CMake: cmake.org – WMR Nov 5 '08 at 15:54
vote up 0 vote down

I found that the /etc/issue usually have something about the distro in use. But I don't know about it's availability on all distros.

link|flag
Unfortunately, many distros have a very minimal /etc/issue which just has something like "This is \n.\O (\s \m \r) \t" in it, which gives no real information about the distro. – Evan Teran Nov 5 '08 at 5:15
vote up 4 vote down

This is, annoyingly, a harder problem than it appears.

For Linux systems, use lsb_release.

$ lsb_release --all
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 8.04.1
Release:        8.04
Codename:       hardy
$ lsb_release -i
Distributor ID: Ubuntu

This has the limitation that lsb_release works only for Linux releases.

For all Unix systems, you can also parse up uname.

$ uname -a
Linux blue-laptop 2.6.24-21-generic #1 SMP Tue Oct 21 23:43:45 UTC 2008 i686 GNU/Linux

You can find some information about the systems and distributions at the uname Wikipedia page.

link|flag
vote up 0 vote down

In my .cshrc I have

setenv DISTRO ` cat /proc/version | sed 's/.*(//' | sed 's/)).*//' `

For ksh / bash users, I presume it translates to

export DISTRO=` cat /proc/version | sed 's/.*(//' | sed 's/)).*//' `

and of course this may not work for your favorite distro. (I have has issues with Oracle's Unbreakable Linux giving something similar to Redhat, but it was good enough for my purposes.)

link|flag
vote up 8 vote down
cat /etc/*release

I'm surprised that noone has mentioned that most distributions put a release file in /etc/ (like /etc/redhat-release, /etc/gentoo-release, etc) which usually has the version number of your distro in it.

link|flag
vote up 0 vote down
uname -r

should print the kernel version currently running (at least, it does for Linux, don't know if it's the same for *BSD or others). That's not the same as the distro but the kernel version often includes the distro name if it's customised, like "2.6.27-gentoo-r1" or something.

Init often prints something at boot, but that's not much good when it's running.

Otherwise as far as I know there isn't anything universal.

link|flag
vote up 0 vote down

You can use 'uname':

[anton@localhost ~]$ uname -a
Linux localhost 2.6.26-ARCH #1 SMP PREEMPT Tue Aug 26 21:15:43 UTC 2008 i686 AMD Athlon(tm) 64 Processor 3000+ AuthenticAMD GNU/Linux
link|flag
uname shows the version and architecture, but not the distribution (Red Hat, SuSE, Ubuntu, ....) – Adam Liss Nov 5 '08 at 3:46
normally the distribution adds to the version, like in the example the distribution is Arch Linux. And for Arch, all the other mentioned ideas except /etc/issue don't work as well. So why the downvote? – ypnos Nov 6 '08 at 7:50
vote up -1 vote down

Try uname -a

link|flag

Your Answer

Get an OpenID
or

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