advi command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
advi: command not found
or when using sudo you get the following error message
sudo: advi: command not found
Solutions to advi: command not found
How To Fix advi: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu advi is provided by advi package.
advi is:
Active-DVI is a DVI previewer and presenter written in Objective Caml with some eye candy effects for presentation, support for interactive demonstrations, and embedding of arbitrary applications within the presentation (hence the Active adjective of the presenter :).
Active-DVI does not (yet) support postscript fonts (see the README.Debian for more details).
Active-DVI also has the ability to run embedded commands, which may cause security problems when viewing untrusted DVI files. Make sure to read the README.Debian for more information.
To fix this problem, we can install more using the command below.
sudo apt-get -y install advi
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install advi.
sudo apt -y install advi
Or if you have aptitude installed you can use the following command.
sudo aptitude install advi
Summary
In this tutorial we learn how to fix advi command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.