You installed these packages using the multilib repository (anything lib32-…
lives in there, and a few other packages). Now, for whatever reason, the multilib repository is no longer available. Maybe you deactivated it in your pacman configuration, or you just had issues downloading the latest package database. paru no longer finds them in the official repositories, and it also does not find them in the AUR, so it displays that message. After you have updated/reenabled the multilib repository, this message will disappear.
Thank you. Yes I activated multilib for Wine, but when it didn't work for me, I uninstalled it and deactivated multilib.
You can list the packages that were previously installed as a dependency for another package but are no longer required using pacman -Qdt
. It should be safe to remove all of them. (Some of them might only be required to build another package from the AUR, not to use it. But those will automatically get reinstalled the next time you update/install that package using paru).
You can automatically remove all obsolete dependencies when uninstalling a package using pacman -Rns
. For example, pacman -Rns wine
would have likely uninstalled the lib32-…
packages for you automatically (assuming no other package depends on them).
The list is long. I there any way to remove them all at once? I looked on the man page but I couldn't find.
pacman -Qqdt
will list the obsolete packages without the version number. You can pass the output of this command (i.e. all the obsolete packages) back to pacman using $(…)
command substitution: sudo pacman -Rns $(pacman -Qqdt)
Thank you very much.
Arch Linux
The beloved lightweight distro