Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I wonder if anyone can help me? In Windows, when a new version of a program or 'app' is released, you can un-install that program and then install the updated program with complete ease. However, as I am using Ubuntu 11.04 this is not the case. My question is how can I install/upgrade programs in Ubuntu 11.04 to the latest version without migrating/upgrading to the latest Ubuntu version? The reason I won't upgrade to a newer Ubuntu release is that I don't like the Unity interface or GNOME 3 and that I cannot seem to place icons on the desktop i.e. Firefox, my home folder, my computer, etc. Any help will be greatly appreciated.

share|improve this question
3  
Welcome to Ask Ubuntu! New questions about end-of-life Ubuntu releases are considered off-topic as per the FAQ. These old releases are unsupported and their use is not recommended. They don't even get updates for newly discovered security vulnerabilities, which makes continued, long-term use risky. If you install or upgrade to a supported release and this question still applies, please flag and/or comment to request it be reopened. – The Lord of Time Mar 20 at 23:33

closed as off topic by maggotbrain, The Lord of Time, Eliah Kagan, Seth, con-f-use Mar 21 at 8:16

Questions on Ask Ubuntu are expected to relate to Ubuntu within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

While there is no easy way to do what you want (maybe just to add program-specific ppa's), Debian Systems (such as Ubuntu) have, to say simply, a network (I don't mean Internet, but I mean that all is connected between each another) of packages. That means that if you change one package, you will change all packages that depend on it, there lies the big problem with old and unsupported distros; a program depends on a newer library that is not compatible with your Ubuntu version.

I would suggest to upgrade to 12.04 or 12.10 and install the MATE Desktop Environment, which is a fork of GNOME 2, but can be installed in later versions of Ubuntu (such as 12.04 or 12.10).


As a side note:

To update your software, run this from a terminal,

sudo apt-get update

and then:

sudo apt-get dist-upgrade

If you are not familiar with command-line, you can always use Update Manager (search it in the Dash)

Explanation:

sudo - grants you root access.

apt-get update - updates the packages data (such as name, description and version).

apt-get dist-upgrade - updates your software to newer versions.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.