Ubuntu20 destor安装
环境
destor是副本数据重删的实验平台,需要用到glib库,编译安装过程繁琐,网上找到的教程在新版本的ubuntu系统中存在问题,特记录过程。
源码:https://github.com/fomy/destor
环境:Linux64,ubuntu20.04LTS
glib安装
destor依赖2.32版本以上的glib库
安装glib过程中存在较多依赖问题,https://www.cnblogs.com/pcat/p/5520317.html
在尝试多个版本安装后,发现直接安装最新版本最为方便
http://ftp.acc.umu.se/pub/GNOME/sources/glib/2.68/glib-2.68.1.tar.xz
前提准备:
sudo apt install build-essential #安装编译环境
sudo apt install meson #安装 meson
sudo apt install python3-pip #setuptool
根据文档安装命令如下:
- % tar xf glib-@GLIB_VERSION@.tar.gz # unpack the sources
- % cd glib-@GLIB_VERSION@ # change to the toplevel directory
- % meson _build # configure the build
- % ninja -C _build # build GLib
- % ninja -C _build install # install GLib
过程中会自动下载并安装缺少依赖,但是需要对GitHub有较好的网络访问速度,否则容易失败
改变glib头文件位置
sudo cp -r /usr/local/include/glib-2.0/* /usr/local/include
sudo cp /usr/local/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h /usr/local/include
建立连接
sudo ln -s /usr/local/lib/libglib-2.0.so /usr/local/lib/libglib.so
测试glib
在destor 源码目录执行 ./configure
如果安装顺利,可以看到**-lglib yes** 的提示
libcrypto问题
destor源码中引用了libcrypto库中的三个函数
SHA_Init(&ctx);
SHA_Update(&