mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-26 21:30:55 +08:00
parent
efcd586fa8
commit
c6c096eb3f
@ -3,31 +3,32 @@
|
|||||||
[#]: author: "Arindam https://www.debugpoint.com/author/admin1/"
|
[#]: author: "Arindam https://www.debugpoint.com/author/admin1/"
|
||||||
[#]: collector: "lkxed"
|
[#]: collector: "lkxed"
|
||||||
[#]: translator: "geekpi"
|
[#]: translator: "geekpi"
|
||||||
[#]: reviewer: " "
|
[#]: reviewer: "wxy"
|
||||||
[#]: publisher: " "
|
[#]: publisher: "wxy"
|
||||||
[#]: url: " "
|
[#]: url: "https://linux.cn/article-15875-1.html"
|
||||||
|
|
||||||
修复 Arch Linux 中的 “invalid or corrupted package (PGP signature)” 错误
|
修复 Arch Linux 中的 “invalid or corrupted package (PGP signature)” 错误
|
||||||
======
|
======
|
||||||
|
|
||||||
**修复 Arch Linux 中 “invalid or corrupted package” 错误的简单指南。**
|
![][0]
|
||||||
|
|
||||||
I have a few Arch Linux systems in both physical and VM setup, which I access when needed. Aft
|
> 修复 Arch Linux 中 “invalid or corrupted package” 错误的简单指南。
|
||||||
我在物理和 VM 都安装有一些 Arch Linux 系统,我会在需要时访问它们。将近两个月后,当我尝试使用 `sudo pacman -Syu` 升级其中一个中的 Arch Linux 时,我遇到了数百个这样的错误:
|
|
||||||
|
我在物理机和虚拟机中都安装有一些 Arch Linux 系统,我会在需要时访问它们。将近两个月后,当我尝试使用 `sudo pacman -Syu` 升级其中一个中的 Arch Linux 时,我遇到了数百个这样的错误:
|
||||||
|
|
||||||
![Arch Linux 中无效或损坏的包错误示例][1]
|
![Arch Linux 中无效或损坏的包错误示例][1]
|
||||||
|
|
||||||
问题是当你遇到上面的错误时,你无法升级/更新你的 Arch 系统。即使你同步镜像或获得更快的镜像。所以,如果你运行 `sudo pacman -Syyu`,错误仍然存在。这也是有问题的,因为在修复此问题之前你无法安装任何其他软件包。
|
问题是当你遇到上面的错误时,你无法升级/更新你的 Arch 系统。即使你同步镜像或获得更快的镜像。所以,如果你运行 `sudo pacman -Syyu`,错误仍然存在。这就造成了困难,因为在修复此问题之前你无法安装任何其他软件包。
|
||||||
|
|
||||||
### 原因
|
### 原因
|
||||||
|
|
||||||
当你在 Arch Linux 系统上安装或升级软件包时,pacman 会根据 `archlinux-keyring` 软件包中的密钥检查软件包的数字签名。此验证过程可确保你下载和安装的软件包未经修改且来自受信任的来源。
|
当你在 Arch Linux 系统上安装或升级软件包时,pacman 会根据 `archlinux-keyring` 软件包中的密钥检查软件包的数字签名。此验证过程可确保你下载和安装的软件包未经修改且来自受信任的来源。
|
||||||
|
|
||||||
它包含用于[验证包的真实性和完整性][2]和 pacman 中的 keyring。`archlinux-keyring` 包由 Arch Linux 开发人员定期更新,以包含新的可信密钥并撤销任何泄露的密钥。
|
它包含用于 [验证包的真实性和完整性][2] 和 pacman 中的密钥环。`archlinux-keyring` 包由 Arch Linux 开发人员定期更新,以包含新的可信密钥并撤销任何泄露的密钥。
|
||||||
|
|
||||||
如果你的 Arch Linux 系统很长时间没有更新,那么各种包的数字签名可能会不匹配。更改后的密钥可能与你系统中的密钥不匹配。
|
如果你的 Arch Linux 系统很长时间没有更新,那么各种包的数字签名可能会不匹配。更改后的密钥可能与你系统中的密钥不匹配。
|
||||||
|
|
||||||
因此错误了。
|
因此出现错误了。
|
||||||
|
|
||||||
### 修复
|
### 修复
|
||||||
|
|
||||||
@ -45,6 +46,8 @@ sudo pacman -Syu
|
|||||||
|
|
||||||
这将解决问题,你可以在 Arch Linux 中继续你的正常活动。建议始终保持 `archlinux-keyring` 包为最新,以维护 Arch Linux 系统的安全性和完整性。
|
这将解决问题,你可以在 Arch Linux 中继续你的正常活动。建议始终保持 `archlinux-keyring` 包为最新,以维护 Arch Linux 系统的安全性和完整性。
|
||||||
|
|
||||||
|
*(题图:MJ/7ed6d549-93c6-463d-823e-3a8c3957790f)*
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
via: https://www.debugpoint.com/invalid-corrupted-package-arch/
|
via: https://www.debugpoint.com/invalid-corrupted-package-arch/
|
||||||
@ -52,11 +55,12 @@ via: https://www.debugpoint.com/invalid-corrupted-package-arch/
|
|||||||
作者:[Arindam][a]
|
作者:[Arindam][a]
|
||||||
选题:[lkxed][b]
|
选题:[lkxed][b]
|
||||||
译者:[geekpi](https://github.com/geekpi)
|
译者:[geekpi](https://github.com/geekpi)
|
||||||
校对:[校对者ID](https://github.com/校对者ID)
|
校对:[wxy](https://github.com/wxy)
|
||||||
|
|
||||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||||
|
|
||||||
[a]: https://www.debugpoint.com/author/admin1/
|
[a]: https://www.debugpoint.com/author/admin1/
|
||||||
[b]: https://github.com/lkxed/
|
[b]: https://github.com/lkxed/
|
||||||
[1]: https://www.debugpoint.com/wp-content/uploads/2023/05/Sample-invalid-or-corrupted-package-error-in-Arch-Linux.jpg
|
[1]: https://www.debugpoint.com/wp-content/uploads/2023/05/Sample-invalid-or-corrupted-package-error-in-Arch-Linux.jpg
|
||||||
[2]: https://wiki.archlinux.org/title/Pacman/Package_signing
|
[2]: https://wiki.archlinux.org/title/Pacman/Package_signing
|
||||||
|
[0]: https://img.linux.net.cn/data/attachment/album/202306/03/231559qweqmphmmzpwxhiq.jpg
|
Loading…
Reference in New Issue
Block a user