Ubuntu sources updaten mit sed
Aus Weis nix
If you want to continue using an outdated Ubuntu Version then edit /etc/apt/sources.list and change 'archive.ubuntu.com' to 'old-releases.ubuntu.com'
You can do this with sed
sudo sed -i -e 's/archive.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list
then update with
sudo apt-get update && sudo apt-get dist-upgrade
