uname too vague?

Hi all,

I am ssh'ed into a cluster and want to install a package. However, I don't know which type to chose (CentOS, Fedora, OpenSuSE are some of the options).

I ran called uname with various arguments but none are specific...

$ uname -n
resolute.research...
$ uname -i
x86_64
$ uname -s
Linux

:confused:

*I guess for the time being I can download an compiled version and compile it myself, however it would still be handy to know the correct command...

uname -a
1 Like

Thanks methyl.

That gave me

Linux resolute.research... el5 #1 SMP Wed Jan 21 10:41:14 EST 2009 x86_64 x86_64 x86_64 GNU/Linux

So GNU/Linux then, it shouldn't matter which I chose?:

CentOS4
FC4
FC5
OpenSuSE
CentOS5
Fedora 6 through 10
?

Fairly portable:

cat /etc/*elease

Probably Oracle Enterprise Linux 5 - which is a rebadge of RHEL

You could try (has worked on a handful of linux machines I've used)

cat /etc/release

or

cat /proc/version

thank you all, those tips have done the trick!