diff options
| author | David Uhden Collado <149145202+daviduhden@users.noreply.github.com> | 2024-07-04 05:01:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-04 05:01:50 +0200 |
| commit | de02d8e61cd8356ec958dcf002e5f6d08b96da6b (patch) | |
| tree | 74b71459a11039aa9855dd95e172ba2eb8f96fe1 | |
| parent | 91e1b54674e68f40d95cc526522bb0657b8fa87a (diff) | |
Update i2p.md
Use the i2pd community repository to get the latest version.
| -rw-r--r-- | content/i2p.md | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/content/i2p.md b/content/i2p.md index 88b05b4..b4bd664 100644 --- a/content/i2p.md +++ b/content/i2p.md @@ -15,9 +15,24 @@ There are 2 main I2P implementations, I2P and i2pd, we are using i2pd in this gu ### Installing I2P -i2pd is in most repos, in debian/ubuntu you can install it simply with +We need to [add the i2pd repos to our system](https://repo.i2pd.xyz/) to get the latest version of i2pd: + +Install apt-transport-https and gpg package: + +```sh +apt install apt-transport-https gpg +``` + +Automatically add the repository with a script: + +```sh +wget -q -O - https://repo.i2pd.xyz/.help/add_repo | bash -s - +``` + +After that you can install i2pd as any other software package: ```sh +apt update apt install i2pd ``` @@ -46,7 +61,7 @@ keys = example.dat If you run `i2pd` with the configuration above, it will generate a random private key (`example.dat`) for your website in `example.dat` with a matching address made up of 52 random characters, derived from this same key. -If you instead pre-generate a private key for your website, you can use brute-force computation to make a "vanity" address, such as the following: +If you instead pre-generate a private key for your website, you can use brute-force computation to make a "vanity" address, such as the following: ``` {{<hl>}}chad{{</hl>}}aor3jc08ht340c30mg5cf340j395gj095kuazj5tokipr34f.32.i2p ``` |
