# Remove PPA From System

To remove PPA from system, we can use either of the following methods -

## Method 1

We can use `--remove` flag in `add-apt-repository` command

```bash
sudo add-apt-repository --remove ppa:example/ppa
```

## Method 2

We can use `ppa-purge`

```bash
sudo apt-get install ppa-purge
sudo ppa-purge ppa:example/ppa
```

***Source:*** [***ItsFoss***](https://itsfoss.com/how-to-remove-or-delete-ppas-quick-tip/)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://til.devjugal.com/linux/remove-ppa-from-system.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
