summaryrefslogtreecommitdiff
path: root/etc/pacman.d
AgeCommit message (Collapse)Author
2025-05-09default mirror often slow, use othersXiao Pan
Default mirror often outputs errors like this: "error: failed retrieving file 'core.db' from mirror.archlinuxarm.org : Connection timed out after 10002 milliseconds". So I tried to specify mirrors manually and it seems much better now. Another way maybe is DisableDownloadTimeout in pacman.conf, not tested.
2025-05-09add default mirrorlistXiao Pan
2024-09-20pacman new version maybe changed thisXiao Pan
2024-03-16fix: add allow-weak-key-signatures to /etc/pacman.d/gnupg/gpg.conf, to ↵Xiao Pan
workaroud ALARM build key is sha1 and rejected by new gpg With newer version of gpg, pacman will error `Error: Signature is marginal trust` for Arch Linux ARM Build System key. It seems because Arch Linux ARM Build System key is sha1 and rejected by new versions of gpg. Need to reset all keys by: ```sh sudo rm -rf /etc/pacman.d/gnupg sudo pacman-key --init echo 'allow-weak-key-signatures' | sudo tee -a /etc/pacman.d/gnupg/gpg.conf > /dev/null sudo pacman-key --populate ``` Note, need to add `allow-weak-key-signatures` in /etc/pacman.d/gnupg/gpg.conf before `sudo pacman-key --populate`. More See https://archlinuxarm.org/forum/viewtopic.php?f=9&t=16762
2024-03-16add defaultXiao Pan
2024-02-26dirty workaround to mkinitcpio when linux-megi upgradeXiao Pan