Created
March 9, 2012 23:08
-
-
Save anthonywu/2009190 to your computer and use it in GitHub Desktop.
Redirecting Ubuntu apt-get to old-releases
This file contains hidden or 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
# Point end-of-life Ubuntu versions' apt source URLs to old-releases.* | |
# See: https://help.ubuntu.com/community/EOLUpgrades | |
sudo sed -i s/us.archive.ubuntu/old-releases.ubuntu/g /etc/apt/sources.list | |
sudo sed -i s/security.ubuntu/old-releases.ubuntu/g /etc/apt/sources.list | |
sudo apt-get update |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Needed to change
us.archive.ubuntu/
toarchive.ubuntu/
, but works like a charm otherwise.Thanks a lot!