main
dietshasta 2025-04-24 18:29:40 +00:00
parent 41692737f0
commit 45467b2ba3
1 changed files with 14 additions and 2 deletions

View File

@ -24,6 +24,18 @@ zgrep CONFIG_SECURITY_LANDLOCK /proc/config.gz
If Landlock is built in but not enabled you can add "lsm=landlock" to the kernel boot parameters. If Landlock is built in but not enabled you can add "lsm=landlock" to the kernel boot parameters.
Fetching
-
Run the following commands.
```
export http_proxy=http://127.0.0.1:4444
git clone http://git.community.i2p/dietshasta/Sandbox.git
git clone --depth=1 --branch 2.56.0 --single-branch http://git.community.i2p/PurpleI2P/i2pd.git
cp -rf Sandbox/* i2pd/ && cd i2pd
```
Building for Debian Building for Debian
- -
For seccomp headers need to be installed. For seccomp headers need to be installed.
@ -32,14 +44,14 @@ For seccomp headers need to be installed.
sudo apt install libseccomp-dev sudo apt install libseccomp-dev
``` ```
Copy these files to a complete set of i2pd sources. Then build. Then build.
``` ```
make SANDBOX=yes make SANDBOX=yes
``` ```
Building for Docker Building for Docker
- -
Copy these files to a complete set of i2pd sources. Then build and run. Build and run.
``` ```
sudo EXTERNAL_PORT= docker-compose up --build sudo EXTERNAL_PORT= docker-compose up --build
``` ```