Dec
16
2008
How to tell what version / kernel your linux server is running.
Posted by keith in Linux, QmailIf you ever work on other linux servers (other than your own) and need to see what OS or kernel they are running, you can connect via SSH and type the following to find out;
Determine the Installed Version of Redhat-based Systems:
#cat /etc/redhat-release
Determine the Installed Version of Debian
#cat /etc/debian_version Dete
Determine the Installed Version of Ubuntu
#cat /etc/issue or #cat /etc/lsb-release
Determine the Version of the Linux Kernel
#uname -a
Entries (RSS)