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
#!/bin/bash | |
#Notes for running this in a LiveCD in VirtualBox | |
#15.10 (Wily) is now EOL so you need to update /etc/apt/sources.list | |
#Each line should be http://old-releases.ubuntu.com/ubuntu | |
#uck is in the universe repo so you need to edit /etc/apt/sources.list and suffix universe | |
sudo sed -i 's/archive.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list | |
sudo sed -i 's/security.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list | |
sudo sed -i 's/restricted/restricted universe/g' /etc/apt/sources.list | |
sudo apt-get update |