arpd: error while loading shared libraries: libevent-1.4.so.2: cannot open shared object file: No such file or directory
时间: 2023-11-25 17:49:53 浏览: 225
libevent-1.4
这个错误提示表明在运行arps时,系统无法找到名为libevent-1.4.so.2的共享库文件。这可能是由于缺少该库文件或者系统无法找到该库文件所在的路径。以下是两种解决方法:
1. 直接将缺少的库文件拷贝到系统指定的库文件目录中,例如/usr/lib。可以使用以下命令将该库文件拷贝到/usr/lib目录中:
```shell
cp /path/to/libevent-1.4.so.2 /usr/lib/
```
2. 编辑/etc/ld.so.conf文件,在文件中加入libevent-1.4.so.2所在的目录,保存后退出。需要注意的是,每次改动ld.so.conf之后需要运行ldconfig来确认刷新。可以使用以下命令编辑/etc/ld.so.conf文件:
```shell
sudo vi /etc/ld.so.conf
```
在文件中加入libevent-1.4.so.2所在的目录,例如:
```shell
/path/to/libevent-1.4.so.2
```
保存后退出,然后运行以下命令刷新:
```shell
sudo ldconfig
```
阅读全文