So I got from http://askubuntu.com/questions/91815/how-to-install-software-or-upgrade-from-an-old-unsupported-release ( taken for my notepad only ) all credit belong there
and this what solving my matter, commandline only make it simple.
http://askubuntu.com/a/237118 ( taken from here as my notepad ) all credit belong there
What are 404 errors
The 404 or Not Found error message is a HTTP standard response code indicating that the client was able to communicate with the server, but the server could not find what was requested.
The web site hosting server will typically generate "404 - Page Not Found" web page, when users attempts to follow a broken or dead link.
Why are we facing 404 errors
Ubuntu follows the approach of two different release cycles:Normal Ubuntu releases are supported for 9 months. LTS releases are supported for 5 years.EOL: Once the support period for a particular release is over; they are called End Of Life (EOL) and all the updates and package repositories for that Release are transferred to a different server which results in 404 errors while running
Past releases may have different support schedules (for example, normal releases (before 13.04) used to be supported for 18 months, while LTS releases (before 12.04) used to be supported for 3 years on the desktop and 5 years on the server).
sudo apt-get update
. You can confirm if your release has become EOL by going to this page.
If your Ubuntu release is mentioned under "End Of Life (EOL)" Table,
then the release is no longer supported and you should try to upgrade to
a newer supported release. However, if you wish to continue using this unsupported release, you would have to make necessary modifications in /etc/apt/sources.list
to point to the old-releases
server of Ubuntu.Steps to make necessary modifications
- Open your Terminal:
- Press Ctrl + Alt + T; OR
- If you have Gnome:
Applications
→Accessories
→Terminal
; OR - If you have Unity: press Super (the key between Left Ctrl and Left Alt) and query for
Terminal
.
- Run the following command:
input your user password and press Enter.gksudo gedit /etc/apt/sources.list
- Find the first line which doesn't start with
#
. Suppose you are running Karmic Koala (Ubuntu 9.10): it should be like the following line:
where,deb <siteurl> karmic main restricted
<siteurl>
is your preferred server -http://gb.archive.ubuntu.com/ubuntu
in your case (for example). - Press Ctrl + H to replace your
<siteurl>
withhttp://old-releases.ubuntu.com/ubuntu
.
- Search for:
http://gb.archive.ubuntu.com/ubuntu
ie;<siteurl>
- Replace with:
http://old-releases.ubuntu.com/ubuntu
and - Press Replace All
- Search for:
- Once again:
- Search for:
http://security.ubuntu.com/ubuntu
(this exact url for all the Ubuntu Releases — whatever be the present server that you are using) - Replace with:
http://old-releases.ubuntu.com/ubuntu
- Press Replace All
- Search for:
- Save your file and exit Gedit.
- Run the following command:
sudo apt-get update
sudo apt-get dist-upgrade
to install any Security/Bug-fix updates which have not yet been
installed but you won't get any further Security/Bug-fix updates from
Ubuntu.