leave command not found

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

Introduction

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

leave: command not found

or when using sudo you get the following error message

sudo: leave: command not found

Solutions to leave: command not found

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

In Ubuntu leave is provided by leave package.

leave is:

Leave waits until the specified time, then reminds you that you have to leave. You are reminded 5 minutes and 1 minute before the actual time, at the time, and every minute thereafter. When you log off, leave exits just before it would have printed the next message.

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

sudo apt-get -y install leave

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

You can also use apt command to install leave.

sudo apt -y install leave

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

sudo aptitude install leave

Summary

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