Merge branch 'develop' of github.com:cryfs/cryfs into develop
This commit is contained in:
commit
c828a48c2b
28
README.md
28
README.md
@ -18,8 +18,8 @@ Manual install (Ubuntu)
|
|||||||
|
|
||||||
# Add apt repository
|
# Add apt repository
|
||||||
sudo sh -c "echo \"deb http://apt.cryfs.org/ubuntu `lsb_release -s -c` main\" > /etc/apt/sources.list.d/cryfs.list"
|
sudo sh -c "echo \"deb http://apt.cryfs.org/ubuntu `lsb_release -s -c` main\" > /etc/apt/sources.list.d/cryfs.list"
|
||||||
|
|
||||||
# Install cryfs
|
# Install cryfs
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install cryfs
|
sudo apt-get install cryfs
|
||||||
|
|
||||||
@ -30,14 +30,14 @@ Manual install (Debian)
|
|||||||
|
|
||||||
# Add apt repository
|
# Add apt repository
|
||||||
sudo sh -c "echo \"deb http://apt.cryfs.org/debian `lsb_release -s -c` main\" > /etc/apt/sources.list.d/cryfs.list"
|
sudo sh -c "echo \"deb http://apt.cryfs.org/debian `lsb_release -s -c` main\" > /etc/apt/sources.list.d/cryfs.list"
|
||||||
|
|
||||||
# Install cryfs
|
# Install cryfs
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install cryfs
|
sudo apt-get install cryfs
|
||||||
|
|
||||||
GUI
|
GUI
|
||||||
===
|
===
|
||||||
If you want to use a GUI to mount your CryFS volumes, take a look at [zuluCrypt](http://mhogomchungu.github.io/zuluCrypt/). You can simply drag&drop your CryFS encrypted directory into the zuluMount application to mount it.
|
If you want to use a GUI to mount your CryFS volumes, take a look at the [cryfs-gui project](https://github.com/mhogomchungu/cryfs-gui). You have to install the GUI **and** also CryFS itself for it to work.
|
||||||
|
|
||||||
Building from source
|
Building from source
|
||||||
====================
|
====================
|
||||||
@ -47,7 +47,7 @@ Requirements
|
|||||||
- Git (for getting the source code)
|
- Git (for getting the source code)
|
||||||
- GCC version >= 4.8 or Clang >= 3.7
|
- GCC version >= 4.8 or Clang >= 3.7
|
||||||
- CMake version >= 2.8
|
- CMake version >= 2.8
|
||||||
- libcurl4 (including development headers)
|
- libcurl4 (including development headers)
|
||||||
- Boost libraries version >= 1.56 (including development headers)
|
- Boost libraries version >= 1.56 (including development headers)
|
||||||
- filesystem
|
- filesystem
|
||||||
- system
|
- system
|
||||||
@ -63,16 +63,16 @@ You can use the following commands to install these requirements
|
|||||||
|
|
||||||
# Ubuntu
|
# Ubuntu
|
||||||
$ sudo apt-get install git g++ cmake libcurl4-openssl-dev libboost-filesystem-dev libboost-system-dev libboost-chrono-dev libboost-program-options-dev libboost-thread-dev libcrypto++-dev libssl-dev libfuse-dev python
|
$ sudo apt-get install git g++ cmake libcurl4-openssl-dev libboost-filesystem-dev libboost-system-dev libboost-chrono-dev libboost-program-options-dev libboost-thread-dev libcrypto++-dev libssl-dev libfuse-dev python
|
||||||
|
|
||||||
# Fedora
|
# Fedora
|
||||||
TODO
|
sudo dnf install git gcc-c++ cmake libcurl-devel boost-devel boost-static cryptopp-devel openssl-devel fuse-devel python
|
||||||
|
|
||||||
# Macintosh
|
# Macintosh
|
||||||
brew install cmake boost cryptopp openssl
|
brew install cmake boost cryptopp openssl
|
||||||
|
|
||||||
Build & Install
|
Build & Install
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
1. Clone repository
|
1. Clone repository
|
||||||
|
|
||||||
$ git clone https://github.com/cryfs/cryfs.git cryfs
|
$ git clone https://github.com/cryfs/cryfs.git cryfs
|
||||||
@ -83,15 +83,15 @@ Build & Install
|
|||||||
$ mkdir cmake && cd cmake
|
$ mkdir cmake && cd cmake
|
||||||
$ cmake ..
|
$ cmake ..
|
||||||
$ make
|
$ make
|
||||||
|
|
||||||
3. Install
|
3. Install
|
||||||
|
|
||||||
$ sudo make install
|
$ sudo make install
|
||||||
|
|
||||||
You can pass the following variables to the *cmake* command (using *-Dvariablename=value*):
|
You can pass the following variables to the *cmake* command (using *-Dvariablename=value*):
|
||||||
- -D**CMAKE_BUILD_TYPE**=[Release|Debug]: Whether to run code optimization or add debug symbols. Default: Release
|
- -D**CMAKE_BUILD_TYPE**=[Release|Debug]: Whether to run code optimization or add debug symbols. Default: Release
|
||||||
- -D**BUILD_TESTING**=[on|off]: Whether to build the test cases (can take a long time). Default: off
|
- -D**BUILD_TESTING**=[on|off]: Whether to build the test cases (can take a long time). Default: off
|
||||||
|
|
||||||
Troubleshooting
|
Troubleshooting
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user