You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+35Lines changed: 35 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,45 @@ The cryptpilot project aims to provide a way that allows you to securely boot yo
8
8
9
9
# Installation
10
10
11
+
## Install on your system
12
+
11
13
You can found and install the prebuilt binaries the [latest release](https://github.com/openanolis/cryptpilot/releases). Or if you want to build it yourself, you can follow instructions from the [development guide](docs/development.md).
12
14
13
15
After installing, you can edit the configuration files under `/etc/cryptpilot/`. See the [configuration](docs/configuration.md) for details.
14
16
17
+
## Try with docker
18
+
19
+
If you are not running on a [supported distrubutions](#Supported Distrubutions), you can run cryptpilot in a docker container to encrypt a data volume or a bootable OS.
20
+
21
+
Here is an example:
22
+
23
+
1. First, make sure you have nbd kernel module installed.
24
+
25
+
```sh
26
+
modprobe nbd max_part=8
27
+
```
28
+
29
+
2. Create a container, and run your command in the container.
> Note: The additional parameters (`--privileged --ipc=host -v /run/udev/control:/run/udev/control -v /dev:/dev`) are required to make `/dev` works properly in the container.
0 commit comments