yay: error while loading shared libraries: libassuan.so.0 #253

Closed
opened 2024-07-21 14:24:47 +02:00 by mihalycsaba · 2 comments

I have updated this libassuan package and when trying to run pacman after:
pacman: error while loading shared libraries: libassuan.so.0: cannot open shared object file: No such file or directory

I have updated this libassuan package and when trying to run pacman after: pacman: error while loading shared libraries: libassuan.so.0: cannot open shared object file: No such file or directory

use sudo ln -s /usr/lib/libassuan.so.9.0.0 /usr/lib/libassuan.so.0 as a workaround to make your pacman work first. It seems like pacman build has lagged behind libassuan 3.0.0

use `sudo ln -s /usr/lib/libassuan.so.9.0.0 /usr/lib/libassuan.so.0` as a workaround to make your pacman work first. It seems like pacman build has lagged behind `libassuan` 3.0.0
Owner

What was/is your pacman and libassuan version? What x86-64-vN level are you on? If you use a wrapper, like yay, make sure you actually test pacman, not the wrapper.

PS: Instead of symlinking, use LD_PRELOAD to load the libs required, or use pacman-static:

LD_PRELOAD=/usr/lib/libassuan.so.9.0.0 pacman
What was/is your `pacman` and `libassuan` version? What `x86-64-vN` level are you on? If you use a wrapper, like yay, make sure you actually test `pacman`, not the wrapper. PS: Instead of symlinking, use `LD_PRELOAD` to load the libs required, or use `pacman-static`: ``` LD_PRELOAD=/usr/lib/libassuan.so.9.0.0 pacman ```
Sign in to join this conversation.
No description provided.