Categories

Category cover

Automation
155 posts

Category cover

Learning paths
119 posts

Category cover

CISO
22 posts

Category cover

Security
20 posts

Category cover

Notes
19 posts

Category cover

Personal Security
18 posts

Category cover

Infrastructure
12 posts

Category cover

OT/ICS
5 posts

Category cover

Books
3 posts

Category cover

UNetLab
3 posts

Category cover

Write-up
3 posts

Category cover

OSInt
2 posts

Category cover

My life
1 posts

Installing EVE-NG 5

Andrea Dainese
July 27, 2024
Post cover

EVE-NG is installed from packages downloaded from the official repository  via APT. All the following commands should be executed by the root user via SSH.

First, we add the official repository and the GPG key to verify the packages:

wget -qO - https://www.eve-ng.net/focal/[email protected] | sudo apt-key add -
cat << EOF > /etc/apt/sources.list.d/eve-ng.list
deb [arch=amd64] http://www.eve-ng.net/focal focal main
# deb-src [arch=amd64] http://www.eve-ng.net/focal focal main
EOF

Next, we can reload the repositories, upgrade the system, and install EVE-NG CE  along with other packages we will use later:

apt-get update
apt-get -y upgrade
apt-get -y install build-essential dnsmasq eve-ng iptables-persistent libbz2-dev libffi-dev libgdbm-dev libncurses5-dev libnss3-dev libreadline-dev libsqlite3-dev libssl-dev python3-pip zlib1g-dev

Continue reading the post on Patreon .