wcmgr command not found

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

Introduction

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

wcmgr: command not found

or when using sudo you get the following error message

sudo: wcmgr: command not found

Solutions to wcmgr: command not found

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

In Ubuntu wcmgr is provided by webalizer package.

webalizer is:

The Webalizer was designed to scan web server log files in various formats and produce usage statistics in HTML format for viewing through a browser. The Webalizer produces yearly, monthly, daily and hourly statistics. In the monthly reports, various statistics may be produced to show overall usage, usage by day and hour, usage by visiting sites, URLs, user agents (browsers), referrers and country. The Webalizer is highly configurable by use of either command line options or a configuration file, allowing the program to be tailored to individual needs easily.

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

sudo apt-get -y install webalizer

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

You can also use apt command to install webalizer.

sudo apt -y install webalizer

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

sudo aptitude install webalizer

Summary

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