This is on Ubuntu 14.04 (SERVER, so no GUI)
Ok so earlier today I was asked to upgrade GCC to GCC 4.9 (current available is GCC 4.8 for Trusty).
So following these directions I installed the PPA ubuntu-toolchain-r/test. Well, turned out we did not need GCC 4.9 and I wanted to revert back to 4.8. So I followed these instructions and I:
Used ppa-purge tool:
sudo ppa-purge ppa:ubuntu-toolchain-r/test
I removed the repository with --remove
sudo apt-add-repository --remove ppa:ubuntu-toolchain-r/test
And manually removed the PPA file from /etc/apt/sources.list.d as well as the keyring.
But now, whenever I run
sudo apt-get upgrade
It's still asking me to upgrade GCC to 4.9 (and several other toolchain related packages.)
1 this is a headless server. No GUI
2 I do not want ppa:ubuntu-toolchain-r/test to be involved in the server at all anymore. I want it and everything related to it to go away. I cant make it go away. Reboot didnt help
– tucstwo May 27 '15 at 03:50sudo apt-get upgrade
did you runsudo apt-get update
? – David Purdue May 27 '15 at 04:35