bCNC command not found
In this troubleshooting guide we learn how to fix bCNC command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
bCNC: command not found
or when using sudo you get the following error message
sudo: bCNC: command not found
Solutions to bCNC: command not found
How To Fix bCNC: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bCNC is provided by bcnc package.
bcnc is:
GrblHAL (formerly GRBL) CNC command sender, autoleveler, g-code editor, digitizer, CAM and swiss army knife for all your CNC needs.
To fix this problem, we can install more using the command below.
sudo apt-get -y install bcnc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install bcnc.
sudo apt -y install bcnc
Or if you have aptitude installed you can use the following command.
sudo aptitude install bcnc
Summary
In this tutorial we learn how to fix bCNC command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.