完全删除软件和 PPA

完全删除软件和 PPA

我安装了很多来自不同来源的软件,我想开始使用 Flatpaks 而不是 PPA。但如何通过 PPA 等完全删除当前的软件呢?这是我的输出sudo apt update(我使用基于 ubuntu 16.04 的基本操作系统

Hit:1 http://ppa.launchpad.net/alexlarsson/flatpak/ubuntu xenial InRelease
Hit:2 http://archive.canonical.com/ubuntu xenial InRelease                                                                                               
Hit:3 http://ppa.launchpad.net/atareao/atareao/ubuntu xenial InRelease                                                                                   
Hit:4 http://de.archive.ubuntu.com/ubuntu xenial InRelease                                                                                               
Ign:5 http://dl.google.com/linux/chrome/deb stable InRelease                                                                                             
Hit:6 http://download.virtualbox.org/virtualbox/debian xenial InRelease                                                                                  
Hit:7 http://ppa.launchpad.net/bablu-boy/nutty-daily/ubuntu xenial InRelease                                                                             
Hit:8 http://de.archive.ubuntu.com/ubuntu xenial-updates InRelease                                                                                
Hit:9 http://de.archive.ubuntu.com/ubuntu xenial-backports InRelease                                                                              
Hit:10 http://ppa.launchpad.net/djcj/vapoursynth/ubuntu xenial InRelease                                             
Hit:11 http://dl.google.com/linux/chrome/deb stable Release                                    
Hit:12 http://ppa.launchpad.net/elementary-os/stable/ubuntu xenial InRelease                                       
Hit:13 http://ppa.launchpad.net/graphics-drivers/ppa/ubuntu xenial InRelease                                       
Get:14 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB]                                        
Hit:15 http://ppa.launchpad.net/kubuntu-ppa/backports/ubuntu xenial InRelease                                                  
Hit:16 http://ppa.launchpad.net/ondrej/php/ubuntu xenial InRelease                                                             
Hit:17 http://ppa.launchpad.net/elementary-os/os-patches/ubuntu xenial InRelease                                               
Hit:18 http://ppa.launchpad.net/webupd8team/java/ubuntu xenial InRelease                                                       
Hit:19 https://deb.nodesource.com/node_7.x xenial InRelease                                              
Hit:21 http://download.mono-project.com/repo/debian wheezy InRelease                                                    
Hit:22 https://packagecloud.io/slacktechnologies/slack/debian jessie InRelease

比方说,我想完全删除 Blender、MonoDevelop 和 LibreOffice,这样我就可以稍后通过 Flatpaks 安装它。我该如何删除它?

答案1

sudo apt-get autoremove --purge "packagename"

然后浏览该/etc/apt/sources.list.d目录并删除引用该存储库的所有文件。

还可以通过or/etc/apt/sources.listsources.list~删除或注释掉存储库。sudo visudo nano

最后删除该存储库的 GPG 密钥

sudo apt-key list

sudo apt-key del #A#A#A

相关内容