Skip to content

Instantly share code, notes, and snippets.

@tuksik
Last active August 29, 2015 14:06
Show Gist options
  • Save tuksik/4de056d72cb82c02aa15 to your computer and use it in GitHub Desktop.
Save tuksik/4de056d72cb82c02aa15 to your computer and use it in GitHub Desktop.
Remove a PPA

##PPA

add-apt-repository  ppa:zentyal/3.2
add-apt-repository --remove ppa:zentyal/3.2

Remove a PPA by using ppa-purge in terminal:

You might have noticed that in all the above three methods we only talked about deleting or removing a PPA. What about the applications installed using these PPAs? Will they be removed as a result of removing the PPA? The answer is NO. So this is when PPA purge comes in picture. It not only removes the PPA but also uninstalls all the programs installed by the PPA.

Install ppa-purge by using the following command:

sudo apt-get install ppa-purge

Now use it in following manner to purge the PPA:

sudo ppa-purge ppa-url

The URL of the PPA can be found in the Software Sources list.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment