Terminal Command for Uninstalling Programs

85,523
sudo apt-get remove <program name here>

(or aptitude instead of apt-get, if you prefer it).

Share:
85,523

Related videos on Youtube

Lorenzo Biroli
Author by

Lorenzo Biroli

I'm pretty new and just learning about programming and stuff so be patient with me please...

Updated on September 18, 2022

Comments

  • Lorenzo Biroli
    Lorenzo Biroli almost 2 years

    What is the terminal command for easily uninstalling programs or software?

  • Marc
    Marc about 11 years
    sudo apt-get --purge remove <program name here> will go farther and remove any configuration files the program created. Good if you're having problems with a program and just want to start over. Bad if you might want to re-install later and pick up where you were with that program.