我无法安装:sudo apt get update 以及 sudo apt-get update,我怀疑存在类似的问题,但我不确定

我无法安装:sudo apt get update 以及 sudo apt-get update,我怀疑存在类似的问题,但我不确定

我无法添加所有结果,因为有很多链接......

  404  Not Found [IP: 200.236.31.4 80]
Ign:109 http://br.archive.ubuntu.com/ubuntu focal-backports/universe arm64 Packages
Reading package lists... Done
E: The repository 'https://ppa.launchpadcontent.net/pypa/ppa/ubuntu jammy Release' does not have 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.
W: https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
N: Skipping acquire of configured file 'main/binary-arm64/Packages' as repository 'https://dl.winehq.org/wine-builds/ubuntu jammy InRelease' doesn't support architecture 'arm64'

对于 sudo apt-get update:

...
Ign:109 http://br.archive.ubuntu.com/ubuntu focal-backports/universe arm64 Packages
Reading package lists... Done
E: The repository 'https://ppa.launchpadcontent.net/pypa/ppa/ubuntu jammy Release' does not have 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.
W: https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
N: Skipping acquire of configured file 'main/binary-arm64/Packages' as repository 'https://dl.winehq.org/wine-builds/ubuntu jammy InRelease' doesn't support architecture 'arm64'

答案1

似乎您正在使用 Wine 存储库,但是有一个 ARM 处理器,而存储库不支持该处理器。

因此,打开Software & Updates,并从列表中删除该存储库Other Software

另外,你会看到一个由 py​​py PPA 引起的警告,它确实支持您的 ARM 版 Ubuntu 版本。尝试删除该 PPA,然后再次添加 PPA。

运行命令

sudo add-apt-repository --remove ppa:pypy/ppa
sudo add-apt-repository ppa:pypy/ppa

相关内容