worker command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
worker: command not found
or when using sudo you get the following error message
sudo: worker: command not found
Solutions to worker: command not found
How To Fix worker: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu worker is provided by worker package.
worker is:
Worker is a file manager much like the Amiga’s DirOpus. It can be controlled with mouse or keyboard. There is no restriction on the number or type of button functions. Files are recognized by both extension and content, content by recognizing common bytes in the sample files you show it. Drag & Drop is supported.
If xli or imagemagick is installed, it quickly previews pictures in the opposite pane. If x11-utils is installed, xmessage is used to display some informative messages.
To fix this problem, we can install more using the command below.
sudo apt-get -y install worker
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install worker.
sudo apt -y install worker
Or if you have aptitude installed you can use the following command.
sudo aptitude install worker
Summary
In this tutorial we learn how to fix worker command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.