sur command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sur: command not found
or when using sudo you get the following error message
sudo: sur: command not found
Solutions to sur: command not found
How To Fix sur: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sur is provided by subtle package.
subtle is:
Grid-based manual tiling window manager with a strong focus on easy but customizable look and feel.
In comparison to other tiling window managers, subtle has no automatic tiling of the screen size in any way. Instead, windows are arranged according to positions inside of a grid. These positions are called gravities.
To fix this problem, we can install more using the command below.
sudo apt-get -y install subtle
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install subtle.
sudo apt -y install subtle
Or if you have aptitude installed you can use the following command.
sudo aptitude install subtle
Summary
In this tutorial we learn how to fix sur command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.