iox-roudi command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
iox-roudi: command not found
or when using sudo you get the following error message
sudo: iox-roudi: command not found
Solutions to iox-roudi: command not found
How To Fix iox-roudi: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu iox-roudi is provided by iceoryx package.
iceoryx is:
Iceoryx is an inter-process communication (IPC) middleware for POSIX based operating systems. It features shared memory capabilities which allow a true zero-copy data transfer.
Originating from the automotive domain, it is crucial to transfer a huge amount of data between multiple processes to realize driver assistance systems or automated driving applications. Moreover, the same efficient communication mechanism can be applied to a broader range of use cases, e.g. in the field of robotics or game development.
This package provides the central RouDi daemon and the introspection tool for Iceoryx.
To fix this problem, we can install more using the command below.
sudo apt-get -y install iceoryx
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install iceoryx.
sudo apt -y install iceoryx
Or if you have aptitude installed you can use the following command.
sudo aptitude install iceoryx
Summary
In this tutorial we learn how to fix iox-roudi command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.