Created
November 18, 2017 02:18
-
-
Save DastanIqbal/aef9e883a665cd5e46168df7f9a494c6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#How to upgrade from 15.04 to 16.04 | |
#Check package avaliablity | |
#http://old-releases.ubuntu.com/ubuntu/dists/ | |
#Try this first: | |
#http://changelogs.ubuntu.com/meta-release | |
#https://help.ubuntu.com/community/EOLUpgrades | |
## EOL upgrade sources.list | |
# Required | |
#Add all deb in Software & Updates`> Other Software > Add | |
deb http://old-releases.ubuntu.com/ubuntu/ CODENAME main restricted universe multiverse | |
deb http://old-releases.ubuntu.com/ubuntu/ CODENAME-updates main restricted universe multiverse | |
deb http://old-releases.ubuntu.com/ubuntu/ CODENAME-security main restricted universe multiverse | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get -f install | |
reboot | |
#you got 15.10 here | |
sudo apt-get update | |
sudo apt-get dist-upgrade | |
reboot | |
#now you got 16.04 here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment