V0WKeep3r
Results
1
comments of
V0WKeep3r
> ./xray_linux_amd64: error while loading shared libraries: libpcap.so.0.8: cannot open shared object file: No such file or directory > > 无法启动 查看/usr/lib64目录下的 libpcap.so.* 文件,发现libpcap.so和libpcap.so.1都是libpcap.so.1.9.1的软链接文件。只需要在/usr/lib64/目录下再建一个软链接文件就能成功解决问题了。 ```bash ls -al /usr/lib64/libpcap.so.* ln -s...