반응형
* 출처: https://askubuntu.com/questions/307/how-can-ppas-be-removed
There are a number of options:
-
Use the --remove flag, similar to how the PPA was added:
sudo add-apt-repository --remove ppa:whatever/ppa -
You can also remove PPAs by deleting the .list files from /etc/apt/sources.list.d directory.
-
As a safer alternative, you can install ppa-purge:
sudo apt-get install ppa-purgeAnd then remove the PPA, downgrading gracefully packages it provided to packages provided by official repositories:
sudo ppa-purge ppa:whatever/ppaNote that this will uninstall packages provided by the PPA, but not those provided by the official repositories. If you want to remove them, you should tell it to apt:
sudo apt-get purge package_name -
Last but not least, you can also disable or remove PPAs from the "Software Sources" section in Ubuntu Settings with a few clicks of your mouse (no terminal needed).
반응형
'【Fundamental Tech】 > Ubuntu' 카테고리의 다른 글
[Ubuntu 20.04] Ubuntu 20.04에서 nvme cli 2.0 빌드 (0) | 2023.03.19 |
---|---|
부팅시 스크립트 자동 실행시키기(rc.local) (0) | 2022.07.30 |
[Ubuntu 20.04] How to Install Python Pip (0) | 2020.10.15 |
[Ubuntu 16.04] Scrapy 설치 (without virtualenv) (0) | 2016.12.19 |
ubuntu 시작시 자동으로 스크립트 실행 (0) | 2012.10.28 |