simulavr command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
simulavr: command not found
or when using sudo you get the following error message
sudo: simulavr: command not found
Solutions to simulavr: command not found
How To Fix simulavr: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu simulavr is provided by simulavr package.
simulavr is:
simulavr simulates the Atmel AVR family of micro-controllers, emulates a gdb remote target, and displays register and memory information in real time.
To fix this problem, we can install more using the command below.
sudo apt-get -y install simulavr
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install simulavr.
sudo apt -y install simulavr
Or if you have aptitude installed you can use the following command.
sudo aptitude install simulavr
Summary
In this tutorial we learn how to fix simulavr command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.