- 首先解决依赖
$sudo yum install wxGTK-devel nasm fuse-devel
- 然后下载源代码
$git clone https://github.com/CipherShed/CipherShed.git
- 进入目录
$cd CipherShed/src
- 开始编译
$LIBS="-ldl" make
完成后就可以从 CipherShed/src/Main/ 打开 ciphershed 了!
English Version:
via https://wiki.ciphershed.org/BuildOnLinux
- Install the development libraries the application depends on:
sudo yum install wxGTK-devel nasm fuse-devel
- Check out the sources from repository:
git clone https://github.com/CipherShed/CipherShed.git
- Enter the newly checked out work-space
cd CipherShed/src
- Start the MAKE build process. The application depends on libdl.so, the dynamic linker of Linux. As the dependency has not been declared in Makefile, it must be added on command line:
LIBS="-ldl" make
Finally the binary can be found within the ./Main directory .