lfm command not found

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

Introduction

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

lfm: command not found

or when using sudo you get the following error message

sudo: lfm: command not found

Solutions to lfm: command not found

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

In Ubuntu lfm is provided by lfm package.

lfm is:

Last File Manager is a simple but powerful file manager for the UNIX console. It has been developed with the ol’ good Midnight Commander as model.

lfm package also contains pyview, a text / hex file viewer to be used with or without lfm.

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

sudo apt-get -y install lfm

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

You can also use apt command to install lfm.

sudo apt -y install lfm

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

sudo aptitude install lfm

Summary

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