从Ubuntu移除gcc


Answers:


9

有一件事情(谢谢@kos):

我绝对不会gcc一般地删除它,但是如果必须的话,我不会这样做:它也会删除build-essential ,因此make;首先,如果您安装了nVidia>驱动程序,则它们也将被删除,因为它们依赖于make,还有谁知道还有哪些其他东西。

换句话说,知道你做什么。;-)


如果只需要重新安装,请使用

sudo apt-get install --reinstall gcc-4.9

如果确实需要删除gcc-4.9,请使用以下简短而危险的命令:

sudo apt-get purge gcc-4.9

我只想删除它并重新安装一次。如果我再次安装它,还会有问题吗?
2015年

6
是。使用sudo apt-get install --reinstall gcc-4.9替代
AB

是什么使它危险?
加百利博览会

5

使用以下命令,--purge remove选项等效于purge

sudo apt-get --purge remove gcc-4.9

根据apt-get手册:

--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
等值总是好的=)
AB
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.