在CentOS系统上制作AppImage时,通常需要以下依赖库:
sudo yum install fuse
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage
chmod a+x appimagetool-x86_64.AppImage
ldd
命令查看可执行文件的依赖库:ldd /path/to/your/executable
并根据输出结果安装缺失的依赖库。
此外,如果在打包过程中遇到依赖问题,可能还需要安装patchelf
和linuxdeployqt
等工具来处理依赖关系和打包应用程序。
请注意,具体的依赖库可能会根据应用程序的不同而有所变化。在制作AppImage之前,建议使用ldd
命令检查应用程序的依赖库,并确保所有必要的库都已安装。