I want to completely remove gcc from Ubuntu. I am using gcc 4.9 which happens to be the latest version.
How can I remove it completely from my system?
22 Answers
There is one thing (thank you @kos):
I definitely wouldn't remove
gccin general, but if I had to I wouldn't do it this way: this will remove alsobuild-essentialand hencemake; for one, if you have the nVidia > drivers installed it will remove those as well, since they depend onmake, plus who knows what other stuff.
With other words, know what you do. ;-)
If you only need a reinstall, use
sudo apt-get install --reinstall gcc-4.9If you really, really need to remove gcc-4.9, use this short and dangerous command:
sudo apt-get purge gcc-4.9 3 use below command , --purge remove option is equivalent to purge
sudo apt-get --purge remove gcc-4.9according apt-get manual:
--purge Use purge instead of remove for anything that would be removed. An asterisk ("*") will be displayed next to packages which are scheduled to be purged. remove --purge is equivalent to the purge command. Configuration Item: APT::Get::Purge. 1