sview command not found

In this troubleshooting guide we learn how to fix sview command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

sview: command not found

or when using sudo you get the following error message

sudo: sview: command not found

Solutions to sview: command not found

How To Fix sview: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu sview is provided by sview package.

sview is:

SLURM, the Simple Linux Utility for Resource Management, is an open-source cluster resource management and job scheduling. This package contains sview a GUI that can be used to view SLURM configuration, job, step, node and partitions state information. Authorized users can also modify select information.

To fix this problem, we can install more using the command below.

sudo apt-get -y install sview

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install sview.

sudo apt -y install sview

Or if you have aptitude installed you can use the following command.

sudo aptitude install sview

Summary

In this tutorial we learn how to fix sview command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.