proxytrack command not found

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

Introduction

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

proxytrack: command not found

or when using sudo you get the following error message

sudo: proxytrack: command not found

Solutions to proxytrack: command not found

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

In Ubuntu proxytrack is provided by proxytrack package.

proxytrack is:

ProxyTrack is a simple proxy server aimed to deliver content archived by HTTrack sessions. It can aggregate multiple download caches, for direct use (through any browser) or as an upstream cache slave server. This proxy can handle HTTP/1.1 proxy connections, and is able to reply to ICPv2 requests for an efficient integration within other cache servers, such as Squid. It can also handle transparent HTTP requests to allow cached live connections inside an offline network.

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

sudo apt-get -y install proxytrack

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

You can also use apt command to install proxytrack.

sudo apt -y install proxytrack

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

sudo aptitude install proxytrack

Summary

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