PDA

View Full Version : [ubuntu] Gnome kering pkcs11 error



otherethe
March 15th, 2012, 12:36 PM
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: cannot open shared object file: No such file or directory

any work arounds?
Ubuntu 12.04

bcarlowise
March 15th, 2012, 08:47 PM
Sounds like whatever is trying to use the library is looking in a spot it does not reside. Try running the following command to find where on your system the file resides:

"sudo find / -name gnome-keyring-pkcs11.so"

Once the location of where the file resides is found, you can create a link to the file as follows:

cd /usr/lib/i386-linux-gnu/pkcs11

ln -s <location of where file resides> gnome-keyring-pkcs11.so

For example, on my system the above commands would be as follows:

cd /usr/lib/i386-linux-gnu/pkcs11

ln -s /usr/lib/pkcs11/gnome-keyring-pkcs11.so gnome-keyring-pkcs11.so