packihx command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
packihx: command not found
or when using sudo you get the following error message
sudo: packihx: command not found
Solutions to packihx: command not found
How To Fix packihx: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu packihx is provided by sdcc package.
sdcc is:
SDCC is a C compiler for the Intel MCS51 family, HC08, PIC, GameBoy Z80, DS80S390, Z80, Z180 and STM8 microcontrollers.
This package includes the compiler, assemblers and linkers.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sdcc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sdcc.
sudo apt -y install sdcc
Or if you have aptitude installed you can use the following command.
sudo aptitude install sdcc
Summary
In this tutorial we learn how to fix packihx command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.