0

well i was wondering why on each update we have to goto run to terminal and run commands like

sudo apt-get install --install-recommends xserver-xorg-lts-raring

OR

sudo apt-get update
sudo apt-get upgrade

OR

sudo apt-get install --install-recommends linux-generic-lts-utopic xserver-xorg-lts-utopic libgl1-mesa-glx-lts-utopic libegl1-mesa-drivers-lts-utopic

why it's so tricky always and why UBUNTU don't just give update to Software Updater.

i am using UBUNTU 12.04 LTS this time and i suddenly ran out of thought that i should upgrade my OS. And then the very next moment i was thinking by upgrading to new version all of my files on Desktop or any other repose and all of the Environments and other development things will be gone ?? will i loss my data because i am such kind of person who's desktop is always so important :p i always put my working projects on my desktop, i know it's a bad habit but i do it.

by the way point is there any safer way to do it and not messing with my desktop or document and download files and environmental variables and other stuff, without going into TERMINAL

hope you guys will come out of some nicer solution for me because I've already checked out following links.

How to do Ubuntu upgrade 14.04 to 14.04.2

How to Upgrade Ubuntu 12.04.2, 12.04.3 to 12.04.4, the next Hardware Enablement Stack?

Thanks.

EDIT

Software Updater says no updates for me

no updates for me

Software Updates Options

enter image description here

2 Answers2

2

14.04.2 is only a version for the image release. The version of Ubuntu itself is still 14.04. The appended numbers on LTS versions are simply later image milestone releases, to differentiate them from the original installer images. If you've installed all the updates, then you have the same packages as are on the 14.04.2 image already. If you need the HWE updates, you can install them, though they are not necessarily required, depending on your hardware.

dobey
  • 40,982
  • 1
    So that's what the user wanted to know ? he wanted to see 14.04.2 in System Settings -> Details ? Makes sense now. By the way, add to the answer, that the user actually can see the full version image release number if they go to TTY 1 - 7 or do lsb_release -d or cat /etc/issue – Sergiy Kolodyazhnyy Mar 05 '15 at 17:50
  • thanks to @Serg :p i tried lsb_relrase -d and the output was Description: Ubuntu 14.04.2 LTS;) – Ahsan Hussain Mar 05 '15 at 17:53
-3

Try switching between

sudo apt-get update
sudo apt-get upgrade

First, type:

sudo apt-get update

Let the updates take place and then reboot.

Then, type:

sudo apt-get upgrade

Let the updates take place then reboot.

Just remember the updates need to be installed sequentially. You just can't go from one LTS to the next higher LTS.

Jakuje
  • 6,605
  • 7
  • 30
  • 37
Rob
  • 1
  • 3
    Hi, welcome to Ask Ubuntu! You seem to have a slight misunderstanding of the function of sudo apt-get update. It doesn't require a reboot, and it doesn't actually update your computer. – Daniel Feb 19 '16 at 19:15