dissop command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dissop: command not found
or when using sudo you get the following error message
sudo: dissop: command not found
Solutions to dissop: command not found
How To Fix dissop: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dissop is provided by orca-sops package.
orca-sops is:
The simple orca plugin system is an interface to enhance Orca with custom commands. The simple interface allows the usage of any executable (including scripts such as shell scripts) to provide information to the user, while the more advanced API allows for modification of all parts of the screen reader by accessing its internal state. Plugins are called using a configurable key stroke.
This package comes with three plugins:
- read current clipboard content
- announce current desktop work space
- a plugin manager for convenient installation and activation of plugins
To fix this problem, we can install more using the command below.
sudo apt-get -y install orca-sops
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install orca-sops.
sudo apt -y install orca-sops
Or if you have aptitude installed you can use the following command.
sudo aptitude install orca-sops
Summary
In this tutorial we learn how to fix dissop command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.