zkg command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
zkg: command not found
or when using sudo you get the following error message
sudo: zkg: command not found
Solutions to zkg: command not found
How To Fix zkg: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu zkg is provided by zkg package.
zkg is:
The Zeek Package Manager makes it easy for Zeek users to install and manage third party scripts as well as plugins for Zeek and ZeekControl.
This package installs the zkg executable and support files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install zkg
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install zkg.
sudo apt -y install zkg
Or if you have aptitude installed you can use the following command.
sudo aptitude install zkg
Summary
In this tutorial we learn how to fix zkg command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.