Makmeksum
Makmeksum

Reputation: 463

Resolve error while loading shared libraries: libselinux.so.1 in ubuntu 14.04 LTS

When i was trying to execute a binary in ubuntu 14.04 LTS, I got this error:

error while loading shared libraries: libselinux.so.1: cannot open shared object file: No such file or directory.

How can this be resolved?

Upvotes: 2

Views: 19649

Answers (1)

rastasheep
rastasheep

Reputation: 11222

This might happen if you have recently installed a shared library and didn't run ldconfig(8) afterwards. Do ldconfig, there's no harm in it.

Upvotes: 3

Related Questions