I’ve been using Arch for just over a year on my older Dell laptop, and have been regularly running sudo pacman -Syu
but not once have I had a problem or anything break. What am I doing wrong?
I’ve been using Arch for just over a year on my older Dell laptop, and have been regularly running sudo pacman -Syu
but not once have I had a problem or anything break. What am I doing wrong?
You didn’t specify which problem or which thing that broke. However (and based on my previous experiences on that matter), one could face a problem regarding package PGP/GPG signatures upon trying to update. This is because
archlinux-keyring
is not being updated before the signature checking. That said, a better approach is to always updatearchlinux-keyring
(sudo pacman -S --needed archlinux-keyring
) before anything else (sudo pacman -Syu
). This way, you guarantee to be up-to-date with developer signatures, needed for pacman to check the validity for every package to be updated/installed. There’s also apacman-key
command, but I never had to use that.I think it’s just sarcasm for the memes from the OP, asking why nothing breaks and what is he doing wrong. The expected behavior is to break.
If you want problems do the exact opposite of this OP. That should solve your lack of problems.
Thanks—will give this a try.