process_viewer command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
process_viewer: command not found
or when using sudo you get the following error message
sudo: process_viewer: command not found
Solutions to process_viewer: command not found
How To Fix process_viewer: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu process_viewer is provided by process-viewer package.
process-viewer is:
Process viewer provides current status of your processes (cpu and memory usage) and your system (usage of every core and of your RAM, and the temperature of your components if this information is available).
This package contains the following binaries built from the Rust crate “process_viewer”:
- process_viewer
To fix this problem, we can install more using the command below.
sudo apt-get -y install process-viewer
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install process-viewer.
sudo apt -y install process-viewer
Or if you have aptitude installed you can use the following command.
sudo aptitude install process-viewer
Summary
In this tutorial we learn how to fix process_viewer command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.