devio command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
devio: command not found
or when using sudo you get the following error message
sudo: devio: command not found
Solutions to devio: command not found
How To Fix devio: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu devio is provided by devio package.
devio is:
devio is a command line program to read correctly from mtd character (and other block) devices. devio allows access to specific regions of the device and allows output of data from specific locations. The primary difference between devio and other command line utilities, such as dd and cat, is that it is not stream based - it writes directly into the object rather than reading and writing a stream of data.
To fix this problem, we can install more using the command below.
sudo apt-get -y install devio
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install devio.
sudo apt -y install devio
Or if you have aptitude installed you can use the following command.
sudo aptitude install devio
Summary
In this tutorial we learn how to fix devio command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.