readbin command not found

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

Introduction

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

readbin: command not found

or when using sudo you get the following error message

sudo: readbin: command not found

Solutions to readbin: command not found

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

In Ubuntu readbin is provided by atlc package.

atlc is:

atlc is a computer aided design (CAD) package for the design and analysis of electrical transmission lines and directional couplers of totally arbitrary cross section and an arbitrary number of different dielectrics.

By analysis, it is assumed one requires finding the electrical properties of a transmission line or coupler, where the physical dimensions of the device are known. By design, it is assumed one requires a transmission line or coupler to have certain electrical properties and one wishes to find how to physically realise such a structure

atlc likely to be of use to radio amateurs, professional RF engineers, students and academics.

More information on atlc is available at http://atlc.sourceforge.net/

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

sudo apt-get -y install atlc

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

You can also use apt command to install atlc.

sudo apt -y install atlc

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

sudo aptitude install atlc

Summary

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