ard-reset-arduino command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ard-reset-arduino: command not found
or when using sudo you get the following error message
sudo: ard-reset-arduino: command not found
Solutions to ard-reset-arduino: command not found
How To Fix ard-reset-arduino: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ard-reset-arduino is provided by arduino-mk package.
arduino-mk is:
Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It’s intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments.
This package will install a Makefile to allow for CLI programming of the Arduino platform.
To fix this problem, we can install more using the command below.
sudo apt-get -y install arduino-mk
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install arduino-mk.
sudo apt -y install arduino-mk
Or if you have aptitude installed you can use the following command.
sudo aptitude install arduino-mk
Summary
In this tutorial we learn how to fix ard-reset-arduino command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.