cba command not found

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

Introduction

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

cba: command not found

or when using sudo you get the following error message

sudo: cba: command not found

Solutions to cba: command not found

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

In Ubuntu cba is provided by cba package.

cba is:

A small engineering tool that calculates member forces and support reactions of a continuous beam. A material and section database is included to set elasticity and moment of inertia. Boundary conditions can be set differently at each support.

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

sudo apt-get -y install cba

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

You can also use apt command to install cba.

sudo apt -y install cba

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

sudo aptitude install cba

Summary

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