DisLocker 安装问题

DisLocker 安装问题

尝试安装 dislocker 并遇到一些挑战,在我下载并解压缩并发出 make 命令后,我收到以下致命错误消息

我是 Linux 新手,所以我可能缺少一些基本知识,有什么想法吗?

谢谢保罗

~/Downloads/dislocker/src$ make 
cc -Wall -Werror -Wextra -Wconversion -DPROGNAME=\"dislocker\" -DVERSION=\"0.4.1\" -D_FILE_OFFSET_BITS=64 -DAUTHOR="\"Romain Coltel\"" -D__OS=\"Linux\" -D__ARCH=\"x86_64\" -D__ARCH_X86_64 -D__LINUX -I. -I/usr/local/include -fstack-protector -fPIC -D_FORTIFY_SOURCE=2 -O1 -c -o dislocker.o dislocker.c
In file included from ./dislocker.h:29:0,
                 from accesses/accesses.h:27,
                 from dislocker.c:28:
./encommon.h:34:26: fatal error: polarssl/aes.h: No such file or directory
 #include "polarssl/aes.h"
                          ^
compilation terminated.
Makefile:115: recipe for target 'dislocker.o' failed
make: *** [dislocker.o] Error 1

答案1

我不知道你的问题是否已经解决了。我也遇到了这个问题,我通过安装libpolarssl-dev库解决了它:

sudo apt-get install libpolarssl-dev

为什么?这就是为什么 ;)

相关内容