vote up 5 vote down star
2

Exact duplicate http://stackoverflow.com/questions/264290/how-to-discover-what-linux-distro-is-in-use

I have ssh access to a linux machine (even root access)/ How can I know exactly what distro is it? uname doens't tell much....

flag

Exact duplicate: stackoverflow.com/questions/264290/… – Paul Tomblin Mar 4 at 14:11

closed as exact duplicate by Paul Tomblin, Jon Skeet, J.F. Sebastian, nickf, dbr Mar 4 at 14:19

4 Answers

vote up 4 vote down check

cat /etc/issue

link|flag
vote up 3 vote down

Here are a few ways to find out which linux distro you are using. I prefer the first one :)

Using /proc/version

cat /proc/version

The output would be like:

Linux version 2.6.13-15-default (geeko@buildhost) (gcc version 4.0.2 20050901 (prerelease) (SUSE Linux)) #1 Tue Sep 13 14:56:15 UTC 2005

Using /etc/issue

cat /etc/issue

The output should be like:

Welcome to SUSE LINUX 10.0 (i586) - Kernel \r (\l).

From the Boot Time messages

dmesg | head -1

The output would be something like:

Linux version 2.6.13-15-default (geeko@buildhost) (gcc version 4.0.2 20050901 (prerelease) (SUSE Linux)) #1 Tue Sep 13 14:56:15 UTC 2005

link|flag
vote up 2 vote down
uname -a

should tell you more than just uname

lsb_release -i can complete that command

link|flag
I think thatonly give architecture info, Sakkie provides the commonly known place. – leppie Mar 4 at 14:11
vote up 1 vote down

Unfortunately this is not a simple task. This link has several helpful suggestions.

link|flag

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