Skip to content

Commit 58c5c2d

Browse files
Merge pull request #105 from diogomatsubara/update-debian-repo-docs
docs: update debian repository installation docs
2 parents 489bb42 + d09f18a commit 58c5c2d

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

content/docs/getting-started/installation.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,25 +43,32 @@ $ brew install zenoh
4343
```
4444

4545
Then you can start the Zenoh router with this command:
46+
4647
```bash
4748
$ zenohd
4849
```
4950

5051
### Ubuntu or any Debian
5152

53+
Add Eclipse Zenoh public key to apt keyring
54+
55+
```bash
56+
$ curl -L https://download.eclipse.org/zenoh/debian-repo/zenoh-public-key | sudo tee /etc/apt/keyrings/zenoh-public-key.gpg
57+
```
58+
5259
Add Eclipse Zenoh private repository to the sources list:
5360

5461
```bash
55-
$ echo "deb [trusted=yes] https://download.eclipse.org/zenoh/debian-repo/ /" | sudo tee -a /etc/apt/sources.list > /dev/null
62+
$ echo "deb [signed-by=/etc/apt/keyrings/zenoh-public-key.gpg] https://download.eclipse.org/zenoh/debian-repo/ /" | sudo tee -a /etc/apt/sources.list > /dev/null
5663
$ sudo apt update
5764
```
5865

5966
Install Zenoh:
6067

6168
```bash
62-
$ sudo apt install zenoh
69+
$ sudo apt install zenoh
6370
```
64-
71+
6572
Then you can start the Zenoh router with this command:
6673

6774
```bash

0 commit comments

Comments
 (0)