我注意到在sudo apt update中我有一个错误:
Ign:3 https://dl.bintray.com/etcher/debian stable InRelease
Err:16 https://dl.bintray.com/etcher/debian stable Release
403 Forbidden [IP: 52.35.230.20 443]
Hit:17 http://ppa.launchpad.net/yannubuntu/boot-repair/ubuntu bionic InRelease
Reading package lists... Done
E: The repository 'https://deb.etcher.io stable Release' no longer has a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.我尝试使用典型的add-apt-repository --remove ppa:X/Here方法删除它,但这没有奏效:
sarah@LesserArk:/etc/apt$ sudo add-apt-repository --remove ppa:https://dl.bintray.com/etcher/debian
Cannot add PPA: 'ppa:~https/ubuntu/ppa'.
ERROR: '~https' user or team does not exist.
sarah@LesserArk:/etc/apt$ sudo add-apt-repository --remove ppa:"https://dl.bintray.com/etcher/debian"
Cannot add PPA: 'ppa:~https/ubuntu/ppa'.
ERROR: '~https' user or team does not exist.
sarah@LesserArk:/etc/apt$ sudo add-apt-repository --remove ppa:dl.bintray.com/etcher/debian
Cannot add PPA: 'ppa:~dl.bintray.com/etcher/debian'.
ERROR: '~dl.bintray.com' user or team does not exist.
sarah@LesserArk:/etc/apt$ sudo add-apt-repository --remove ppa:bintray.com/etcher/debian
Cannot add PPA: 'ppa:~bintray.com/etcher/debian'.
ERROR: '~bintray.com' user or team does not exist.
sarah@LesserArk:/etc/apt$ sudo add-apt-repository --remove etcher/debian我似乎什么都不做,我该怎么做才能去除PPA?
发布于 2020-03-04 01:06:55
如果你把它和。
echo "deb https://deb.etcher.io stable etcher" | sudo tee /etc/apt/sources.list.d/balena-etcher.list然后,要删除它,还需要追加deb。
sudo add-apt-repository --remove "deb https://deb.etcher.io stable etcher"
sudo rm /etc/apt/sources.list.d/balena-etcher.list
sudo apt updatehttps://askubuntu.com/questions/1214685
复制相似问题