Installation as Linux package
This guide provides instructions on how to install IntelMQ and it's components from Linux distribution's package repository.
Note
Some bots may have additional dependencies which are mentioned in their own documentation.
Supported OS
Native packages are currently provided for the following Linux distributions:
- Debian 11 (bullseye)
- Debian 12 (bookworm)
- openSUSE Tumbleweed
- Ubuntu 20.04 (focal fossa)
- Ubuntu 22.04 (jammy jellyfish)
Debian 11 and 12
Add the repository to the package manager and install IntelMQ (packages intelmq-api
and intelmq-manager
are optional):
echo "deb http://download.opensuse.org/repositories/home:/sebix:/intelmq/Debian_$(lsb_release -rs)/ /" | sudo tee /etc/apt/sources.list.d/intelmq.list
curl -fsSL "https://download.opensuse.org/repositories/home:sebix:intelmq/Debian_$(lsb_release -rs)/Release.key" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/intelmq.gpg > /dev/null
sudo apt update
sudo apt install intelmq intelmq-api intelmq-manager
openSUSE Tumbleweed
Add the repository to the package manager and install IntelMQ (packages intelmq-api
and intelmq-manager
are optional):
zypper addrepo https://download.opensuse.org/repositories/home:sebix:intelmq/openSUSE_Tumbleweed/home:sebix:intelmq.repo
zypper refresh
zypper install intelmq intelmq-api intelmq-manager
Ubuntu 20.04 and 22.04
For Ubuntu you must enable the Universe repository which provides community-maintained free and open-source software.
Add the repository to the package manager and install IntelMQ (packages intelmq-api
and intelmq-manager
are optional):
-
Open the file
/etc/apt/sources.list
in an editor of your choice. Usesudo
or theroot
user. -
Append
universe
to this line: -
Next, add the IntelMQ APT Repository for Ubuntu:
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
-
Now update the list of available packages and install the IntelMQ packages: