Ubuntu删除添加的PPA源
2022年5月12日大约 2 分钟
Ubuntu删除添加的PPA源
之前尝试给自己的Ubuntu20.04添加Deepin的桌面,自己添加了PPA源,
sudo add-apt-repository ppa:leaeasy/dde
但出现如下面的情况,更新的时候都会提示以下信息
gfdgd_xi@gfdgd-xi-Vostro-220s-Series:~/桌面$ sudo apt update
[sudo] gfdgd_xi 的密码: 命中:1 http://mirrors.aliyun.com/ubuntu focal
InRelease 命中:2 http://mirrors.aliyun.com/ubuntu focal-security
InRelease 命中:3 http://mirrors.aliyun.com/ubuntu focal-updates
InRelease 命中:4 http://mirrors.aliyun.com/ubuntu focal-proposed
InRelease 命中:5 http://mirrors.aliyun.com/ubuntu focal-backports
InRelease 忽略:6 http://ppa.launchpad.net/leaeasy/dde/ubuntu focal
InRelease 错误:7 http://ppa.launchpad.net/leaeasy/dde/ubuntu focal
Release 404 Not Found [IP: 91.189.95.83 80] 正在读取软件包列表... 完成 E: 仓库
“http://ppa.launchpad.net/leaeasy/dde/ubuntu focal Release” 没有 Release
文件。 N: 无法安全地用该源进行更新,所以默认禁用该源。 N: 参见 apt-secure(8) 手册以了解仓库创建和用户配置方面的细节。
gfdgd_xi@gfdgd-xi-Vostro-220s-Series:~/桌面$
而且以后更新系统也很慢,于是就需要删除这个PPA源
正确删除PPA源
很多时候,我们在删除PPA源的同时需要降级在这个源下安装的软件包,以恢复正常的依赖关系
安装依赖
sudo apt install ppa-purge
使用ppa-purge
sudo ppa-purge ppa:leaeasy/dde
仅删除PPA源
使用命令删除PPA源
sudo add-apt-repository --remove ppa:leaeasy/dde
更多命令见
sudo add-apt-repository --help
和
man add-apt-repository
打开终端,定位到/etc/apt/sources.list.d
,也就是输入命令
cd /etc/apt/sources.list.d/
输入命令
ls
查看目录下所有文件,这里显示的结果如下
gfdgd_xi@gfdgd-xi-Vostro-220s-Series:/etc/apt/sources.list.d$ ls
leaeasy-ubuntu-dde-focal.list vscode.list.save
leaeasy-ubuntu-dde-focal.list.save
你会发现这里就是存放PPA源所在的地方,根据需求删除即可,这里以tista-ubuntu-adapta-focal.list*
为例,命令:
sudo rm -rf tista-ubuntu-adapta-focal.list*
删除后可以输入命令
sudo apt-get update
命中:1 http://mirrors.aliyun.com/ubuntu focal InRelease
命中:2 http://mirrors.aliyun.com/ubuntu focal-security InRelease
命中:3 http://mirrors.aliyun.com/ubuntu focal-updates InRelease
命中:4 http://mirrors.aliyun.com/ubuntu focal-proposed InRelease
命中:5 http://mirrors.aliyun.com/ubuntu focal-backports InRelease