How to resolve this error "ERROR: ld.so: object 'xxx' from LD_PRELOAD cannot be preloaded (failed to map segment from shared object): ignored. "
1
vote
2
answers
20257
views
To utilize the proxy on my Ubuntu system, I required the installation of proxychains. Here are the steps I took:
1.
sudo apt-get install proxychains 2.How can I fix this issue and runsudo vim /etc/proxychains.conf ... [ProxyList] socks5 192.xxx.xxx.xxx 10803.sudo vim /usr/bin/proxychains ... #export LD_PRELOAD=libproxychains.so.3 export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libproxychains.so.3Then I runproxychains curl www.google.com
, the proxy doesn't work but there's no error. When I runsudo proxychains curl www.google.com
, there's the error:ERROR: ld.so: object '/usr/lib/x86_64-linux-gnu/libproxychains.so.3' from LD_PRELOAD cannot be preloaded (failed to map segment from shared object): ignored. ERROR: ld.so: object '/usr/lib/x86_64-linux-gnu/libproxychains.so.3' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
proxychains
successfully? Thanks a lot.
Asked by tao zhang
(9 rep)
Jun 7, 2023, 12:03 PM
Last activity: May 20, 2024, 08:01 AM
Last activity: May 20, 2024, 08:01 AM