To view what version of Ubuntu you currently have installed on your box, the easiest is simply to enter the falling in from the command line:
cat /etc/issue
or even
cat /etc/lsb-release
Finally, if you feel like getting your fingers a little deeper in the details surrounding your machine, you can make use of the uname command, the switches for which can all be looked up in the man pages (but -a should give you what you want!)
Nifty.
You might also enjoy:
-
If you are working on an Ubuntu server installation that comes in the command line only variation, you might at any point in time want to see just what exac ...
-
If you work as a web developer with PHP and all of a sudden you need a script to do something specific for you on a system (say as a cron job or such), ther ...
-
To stop a MySQL server instance on an Ubuntu linux install via the command line is as simple as entering: sudo /etc/init.d/mysql stop Alternatively, to st ...
-
If you're using Ubuntu or perhaps another flavour of Linux, there come a time when you need to either reboot (restart) or shutdown a machine via a terminal ...
-
A simple question for today: how does one go about preventing duplicate rows based on the value held by more than one column being inserted into an existing ...