sudo apt dist-upgrade 尝试安装第三方 ppa 中不存在的软件包

sudo apt dist-upgrade 尝试安装第三方 ppa 中不存在的软件包

我在 ubuntu 20.04 中安装了 parrotOS PPA,因此我可以轻松安装和更新黑客工具。

然后我正在更新/etc/apt/preferences.d/parrot-pinning,以便执行以下操作:

  • 如果一个工具同时存在于 ubuntu ppa 和 parrotOS ppa 中,它将从 ubuntu 安装(所以我将Pin-Priorityubuntu 更改为比 parrot 更高)

内容/etc/apt/preferences.d/parrot-pinning

Package: *
Pin: release o=Parrot
Pin-Priority: 500

Package: *
Pin: release o=Debian
Pin-Priority: 700

Package: *
Pin: release o=Kali
Pin-Priority: 50

Package: *
Pin: release o=Ubuntu
Pin-Priority: 1001

我的问题是

执行此操作时sudo apt dist-upgrade,apt 会尝试将 parrotOS PPA 中的工具更新为镜像中不存在的版本。

运行命令后摘录:

Deseja continuar? [S/n] S                #note the Y/n option to continue with upgrade
Err:1 https://mirrors.up.pt/parrot rolling/main amd64 codium amd64 1.60.0-1630974030
  404  Not Found [IP: 2001:690:2200:1200::15 443]
Err:2 https://mirrors.up.pt/parrot rolling/non-free amd64 oracle-instantclient-basic amd64 19.6.0.0.0-0parrot1
  404  Not Found [IP: 2001:690:2200:1200::15 443]
Err:3 https://mirrors.up.pt/parrot rolling/main amd64 metasploit-framework amd64 6.1.2-0parrot1
  404  Not Found [IP: 2001:690:2200:1200::15 443]

url 后面的文件不存在,最新的 codium 版本是codium_1.56.2-1620951495_amd64.deb

输出ubuntu-security-status

2139 packages installed, of which:
1877 receive package updates with LTS until 4/2025
 247 could receive security updates with ESM Apps until 4/2030
  14 packages are from third parties
   1 package is no longer available for download

Packages from third parties are not provided by the official Ubuntu
archive, for example packages from Personal Package Archives in
Launchpad.
For more information on the packages, run 'ubuntu-security-status
--thirdparty'.

Packages that are not available for download may be left over from a
previous release of Ubuntu, may have been installed directly from a
.deb file, or are from a source which has been disabled.
For more information on the packages, run 'ubuntu-security-status
--unavailable'.

Enable Extended Security Maintenance (ESM Apps) to get 1 security
update (so far) and enable coverage of 247 packages.

This machine is not attached to an Ubuntu Advantage subscription.
See https://ubuntu.com/advantage

输出sudo apt update:(将文本翻译成英文)

Atg:1 http://pt.archive.ubuntu.com/ubuntu focal InRelease
Atg:2 http://pt.archive.ubuntu.com/ubuntu focal-updates InRelease              
Atg:3 http://pt.archive.ubuntu.com/ubuntu focal-backports InRelease            
Atg:4 http://packages.microsoft.com/repos/code stable InRelease                
Atg:5 http://security.ubuntu.com/ubuntu focal-security InRelease               
Atg:6 https://repo.pritunl.com/stable/apt focal InRelease                      
Atg:7 https://packages.microsoft.com/repos/ms-teams stable InRelease           
Atg:8 https://deb.parrot.sh/parrot rolling InRelease        
Atg:9 https://deb.parrot.sh/parrot rolling-security InRelease
Reading package list...
building dependency tree...       
Reading state information...
36 packets can be upgraded. run 'apt list --upgradable' to see them.

答案1

这是您的镜像的问题,而不是您的引脚设置的问题:该文件列在包裹清单,并且确实缺少回购协议

改变你的镜子

相关内容