argus command not found

In this troubleshooting guide we learn how to fix argus command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

argus: command not found

or when using sudo you get the following error message

sudo: argus: command not found

Solutions to argus: command not found

How To Fix argus: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu argus is provided by argus-server package.

argus-server is:

argus is a network transaction auditing tool that allows the user to easily classify connections using tcpdump(1) compliant expressions. Argus runs as an application level daemon, promiscuously reading network datagrams from a specified interface, and generates network traffic audit records for the network activity that it encounters. Auditing records can be used to ensure that access control policies are being enforced, identify network problems such as denial of service attacks and more.

This package contains the binaries required for the argus server. Please see the package argus-client for appropriate clients.

To fix this problem, we can install more using the command below.

sudo apt-get -y install argus-server

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install argus-server.

sudo apt -y install argus-server

Or if you have aptitude installed you can use the following command.

sudo aptitude install argus-server

Summary

In this tutorial we learn how to fix argus command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.