lsmount command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lsmount: command not found
or when using sudo you get the following error message
sudo: lsmount: command not found
Solutions to lsmount: command not found
How To Fix lsmount: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lsmount is provided by lsmount package.
lsmount is:
With a larger number of mounts the output of /proc/mounts isn’t longer really comfortable to read. This is where lsmount with options such as alignment and colorisation comes into action.
To fix this problem, we can install more using the command below.
sudo apt-get -y install lsmount
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install lsmount.
sudo apt -y install lsmount
Or if you have aptitude installed you can use the following command.
sudo aptitude install lsmount
Summary
In this tutorial we learn how to fix lsmount command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.