Zeek Installation in Ubuntu Easy Method

Cyber Tool Guardian
3 min readMar 8, 2024

What is Zeek?

An open-source protocol analyzer and network security monitoring tool, Zeek was once known as Bro. It is intended to assist enterprises with real-time network traffic monitoring and analysis, offering information on network activity, potential security risks, and performance concerns. Due to its effectiveness in swiftly capturing and processing network data, Zeek is especially well-liked among cybersecurity experts and network managers.

If you are not a medium member find the full story here.

How to install Zeek

In the old article we saw how to install zeek in Ubuntu, but that process takes a lot of time, thus we can use another process to install zeek in Ubuntu.

Update and upgrade the ubuntu using apt.

sudo apt-get update
sudo apt-get upgrade

Install dependencies using the below command.

apt-get install -y --no-install-recommends g++ cmake make libpcap-dev

Now for Ubuntu 22.04 based machines, use the following commands to add zeek repository into binary packages.

echo 'deb http://download.opensuse.org/repositories/security:/zeek/xUbuntu_22.04/ /' | sudo tee /etc/apt/sources.list.d/security:zeek.list
curl -fsSL…

--

--