rauc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rauc: command not found
or when using sudo you get the following error message
sudo: rauc: command not found
Solutions to rauc: command not found
How To Fix rauc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rauc is provided by rauc package.
rauc is:
Safe and secure software updates for embedded Linux
RAUC controls the update process on embedded Linux systems. It is both a target application that runs as an update client and a host/target tool that allows you to create, inspect and modify installation artifacts.
This package provides the rauc binary.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rauc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rauc.
sudo apt -y install rauc
Or if you have aptitude installed you can use the following command.
sudo aptitude install rauc
Summary
In this tutorial we learn how to fix rauc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.