mspdebug command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mspdebug: command not found
or when using sudo you get the following error message
sudo: mspdebug: command not found
Solutions to mspdebug: command not found
How To Fix mspdebug: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mspdebug is provided by mspdebug package.
mspdebug is:
MSPDebug is a free debugger for use with MSP430 MCUs. It supports FET430UIF, eZ430, RF2500 and Olimex MSP-JTAG-TINY programmers. It can be used as a proxy for gdb or as an independent debugger with support for programming, disassembly and reverse engineering.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mspdebug
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mspdebug.
sudo apt -y install mspdebug
Or if you have aptitude installed you can use the following command.
sudo aptitude install mspdebug
Summary
In this tutorial we learn how to fix mspdebug command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.