How To Tell What Version of Ubuntu You are Running
| Operating Systems - Ubuntu Linux |
Since I have several computers that run Ubuntu with different versions on them, there are times when I need to find out what version of Ubuntu it is running. One reason is to make sure that your Ubuntu upgrade did in fact take properly.
Its real easy to find out which version Ubuntu you are running. Just open up a terminal window, and type the following:
cat /etc/issue
You will get something like this:
Ubuntu 9.10 \n \l
Which tells me that I am running Ubuntu version 9.10.
Sometimes this file does get edited for security reasons. If the /etc/issue file does not give you any information as to what version of Ubuntu you are running, you can also check the /etc/lsb-release file. In that case, you will see something like this:
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=9.10
DISTRIB_CODENAME=karmic
DISTRIB_DESCRIPTION="Ubuntu 9.10"
If you are running an Ubuntu Workstation, then just click on SYSTEM then ABOUT UBUNTU and it will tell you which version of Ubuntu you are running.
This article was originally posted on www.mikestechblog.com Any reproduction on any other site is prohibited and a violation of copyright laws.

