Like every VPS addict it is quite normal to forget which version of an operating system you are running especially if it is a server that you haven’t logged onto for a long time.
In other cases, you may simply be administering quite a few servers with different versions of operating systems and you may not necessary remember what version of Debian is installed on a particular system. Whatever the reason is, we will learn how to check the version of Debian that is running using only the command line.
so without further ado…..
Terminal commands that shows the Debian Version
There are many ways to find the version, here I will show two different ways. Feel free to post more ways in the comment section.
If you only need the version number the easiest way is to execute the following command
1 |
cat /etc/debian_version |
You should get a result like this:
1 |
7.6 |
There you have it, the server is running Debian 7.6!
Another command, that also gives a bit more information is
1 |
lsb_release -a |
You should get a result like:
1 2 3 4 5 |
No LSB modules are available. Distributor ID: Debian Description: Debian GNU/Linux 7.6 (wheezy) Release: 7.6 Codename: wheezy |
To find the Kernel version use the ‘uname‘ command. Using it without parameters will only print out ‘Linux’ and if you didn’t know that you were running Linux you are in trouble 🙂
1 |
uname -a |
prints all Kernel information
1 |
uname -r |
prints your kernel version which is useful for installing things like the kernel headers, for example:
1 |
apt-get install linux-headers-$(uname -r) |
Do you know more ways to get the OS version from the command line? Post a comment with your suggestions!
13 comments for “Find your Debian version, the command line way”