Skip to main content
 首页 » 编程设计

archlinux之无法升级 Archlinux(pacman -Syu 不工作)

2024年09月07日24zhenyulu

我正在运行sudo pacman -Syu在我的 Archlinux 上,我得到以下信息:

cristian@localhost:~$ sudo pacman -Syu 
:: Synchronizing package databases... 
 core is up to date 
 extra is up to date 
 community is up to date 
 multilib is up to date 
 xenlism-arch is up to date 
:: Starting full system upgrade... 
resolving dependencies... 
looking for conflicting packages... 
error: failed to prepare transaction (could not satisfy dependencies) 
:: package-query: requires pacman<4.3 

解决此问题的解决方案是什么?

更新

我已经尝试了@jham 提出的两种解决方案。我已经完全删除了 yaourt 和 package-query。在 pacman -Qi pacman在“要求”我有 none .我还评论了 pacman.conf 中的 multilib 和 xenlism-arch .当我做 pacman -Syu我得到以下信息:
:: Proceed with installation? [Y/n]  
(244/244) checking keys in keyring                              [###################################] 100% 
(244/244) checking package integrity                            [###################################] 100% 
error: confuse: signature from "Thorsten Töpper <atsutane@freethoughts.de>" is unknown trust 
:: File /var/cache/pacman/pkg/confuse-2.8-2-x86_64.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)). 
Do you want to delete it? [Y/n]  
error: failed to commit transaction (invalid or corrupted package) 
Errors occurred, no packages were upgraded. 

请您参考如下方法:

我刚刚遇到了同样的错误。问题似乎是 archlinux-keyring 中有新键。包,以及使用这些 key 签名的新包 (confuse)。由于两个包都在同一个事务中更新,所以在更新完成之前不能使用新 key ,但是在检查包之前事务不会开始......

解决方案是更新 archlinux-keyring通过它自己:

pacman -S archlinux-keyring 

然后做剩下的:
pacman -Su 

如果失败,您可以尝试手动运行 key ,方法是:
pacman-key --populate 

但通常没有必要。