tsxs command not found

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

Introduction

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

tsxs: command not found

or when using sudo you get the following error message

sudo: tsxs: command not found

Solutions to tsxs: command not found

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

In Ubuntu tsxs is provided by trafficserver-dev package.

trafficserver-dev is:

This package provides the Apache Traffic Server Software Developers Kit, which consists of: a collection of development header and bindings for the C programming language, the tsxs linking helper and examples to write your own plug-ins for the Apache Traffic Server.

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

sudo apt-get -y install trafficserver-dev

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

You can also use apt command to install trafficserver-dev.

sudo apt -y install trafficserver-dev

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

sudo aptitude install trafficserver-dev

Summary

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