error while loading shared libraries [How to Solve]

First, check the dependency of the executor

        >>> ldd [programmer] 
	linux-gate.so.1 =>  (0xf7ef9000)
	libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7eba000)
	libboost_locale.so.1.65.1 => not found
	libstdc++.so.6 => /usr/lib/i386-linux-gnu/libstdc++.so.6 (0xf7d43000)
	libm.so.6 => /lib/i386-linux-gnu/libm.so.6 (0xf7ced000)
	libgcc_s.so.1 => /lib/i386-linux-gnu/libgcc_s.so.1 (0xf7cd0000)
	libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf7b19000)
	/lib/ld-linux.so.2 (0xf7efb000)

You can see that there are many dependencies, several of which are not found

So the problem is very clear. You can find any dependency and find that it is all under the/lib/i386 Linux GNU/folder. Since you can’t find it, there is no
under this folder

Just put the corresponding dependency package in this location

Similar Posts: