Skip to content

Commit

Permalink
docs: add missing apt configuration to ubuntu installation
Browse files Browse the repository at this point in the history
fixes #2517
  • Loading branch information
sebix authored and aaronkaplan committed Aug 14, 2024
1 parent 5da8742 commit 6aa1147
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/admin/installation/linux-packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,13 @@ Add the repository to the package manager and install IntelMQ (packages `intelmq
deb http://[...].archive.ubuntu.com/ubuntu/ focal main universe
```

3. Update the list of available packages and install IntelMQ:
3. Next, add the IntelMQ APT Repository for Ubuntu:
```bash
echo "deb http://download.opensuse.org/repositories/home:/sebix:/intelmq/xUbuntu_$(lsb_release -rs)/ /" | sudo tee /etc/apt/sources.list.d/intelmq.list
curl -fsSL "https://download.opensuse.org/repositories/home:sebix:intelmq/xUbuntu_$(lsb_release -rs)/Release.key" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/intelmq.gpg > /dev/null
```

3. Now update the list of available packages and install the IntelMQ packages:
```bash
sudo apt update
sudo apt install intelmq intelmq-api intelmq-manager
Expand Down

0 comments on commit 6aa1147

Please sign in to comment.