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....
|
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....
|
|||
|
closed as exact duplicate by Paul Tomblin, Jon Skeet, J.F. Sebastian, nickf, dbr Mar 4 at 14:19 |
|
|
|
||
|
|
|
|
Here are a few ways to find out which linux distro you are using. I prefer the first one :) Using /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
The output should be like: Welcome to SUSE LINUX 10.0 (i586) - Kernel \r (\l). From the Boot Time messages
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 |
|||
|
|
|
|
should tell you more than just uname
|
||
|
|
|
Unfortunately this is not a simple task. This link has several helpful suggestions. |
||
|
|