Error creating bean with name 'ureport.fontBuilder' defined in class path resource [ureport-core-context.xml]: Initialization of bean failed; nested exception is java.lang.UnsatisfiedLinkError: /usr/local/openjdk-8/jre/lib/aarch64/libfontmanager.so: libfreetype.so.6: cannot open shared object file: No such file or directory
时间: 2024-01-22 20:19:38 浏览: 341
这个错误是因为缺少 `libfreetype.so.6` 库文件,可以按照以下步骤进行修复:
1. 确认你的系统架构是 `aarch64`,可以使用 `uname -m` 命令查看。
2. 安装 `libfreetype6` 库文件,可以使用以下命令:
```
sudo apt-get install libfreetype6
```
3. 确认库文件路径正确,可以使用以下命令查看 `libfreetype.so.6` 库文件所在路径:
```
find / -name libfreetype.so.6
```
4. 如果路径不正确,可以手动设置环境变量 `LD_LIBRARY_PATH`,例如:
```
export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu
```
其中 `/usr/lib/x86_64-linux-gnu` 改为你实际的库文件路径。可以将上述命令添加到 `/etc/profile` 或者 `~/.bashrc` 文件中,使其永久生效。
阅读全文