Upgrading to 18.04 from 16.04. Command line says /usr/lib/ubuntu-release-upgrader/check-new-release-gtk. How do I upgrade from here? [duplicate]
Recently I have installed an older version of Ubuntu on my old machine. Whenever I try to install any software, I get an error saying it couldn't be found:
$ sudo apt-get install vlc
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package vlc
The repositories for older releases that are not supported (like 11.04, 11.10 and 13.04) get moved to an archive server. There are repositories available at http://old-releases.ubuntu.com.
The reason for this is that it is now out of support and no longer receiving updates and security patches.
I would urge you to consider a supported distribution. If your computer is too old in terms of memory or processor then you should consider a distribution such as Lubuntu or Xubuntu.
If you want to continue using an outdated release then edit /etc/apt/sources.list
and change archive.ubuntu.com
and security.ubuntu.com
to old-releases.ubuntu.com
.
You can do this with sed
:
sudo sed -i -re 's/([a-z]{2}\.)?archive.ubuntu.com|security.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list
then update with:
sudo apt-get update && sudo apt-get dist-upgrade
Sometimes, it might be faster to create backups of your system and reinstall using supported release instead.
Source: Can I keep using Ubuntu 9.04 if it's outdated?
To upgrade to a new release:
Once you have performed the above steps to switch to the old-releases mirrors, update the Update Manager and then do do-release-upgrade
:
sudo apt-get update
sudo apt-get install ubuntu-release-upgrader-core
sudo do-release-upgrade
See also EOLUpgrades - Community Help Wiki.
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.
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).
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 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 to enter into root shell:
sudo -i
input your user password and press Enter. The prompt would change and would indicate that the root user is now logged in. Here run the following command:
gedit /etc/apt/sources.list
-
The file would open in a new Gedit window. 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:deb <siteurl> karmic main restricted
where,
<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 to get out of root shell:
logout
You would find that the prompt switches back to indicate that your normal user is now logged in. Then run the following:
sudo apt-get update
There you go. No 404 Errors this time. You can now install all the available packages for your Ubuntu Release. You can also run 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.