theft-server command not found

In this troubleshooting guide we learn how to fix theft-server command not found error message

Introduction

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

theft-server: command not found

or when using sudo you get the following error message

sudo: theft-server: command not found

Solutions to theft-server: command not found

How To Fix theft-server: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu theft-server is provided by clc-intercal package.

clc-intercal is:

This package provides a Perl-based compiler for the INTERCAL programming language, usable either from the command line or as a Perl module.

CLC-INTERCAL is designed to be almost compatible with the original (Princeton 1972) compiler. It also implements several extensions to the original language, including support for object orientation, operator overloading and quantum computing.

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

sudo apt-get -y install clc-intercal

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

You can also use apt command to install clc-intercal.

sudo apt -y install clc-intercal

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

sudo aptitude install clc-intercal

Summary

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