beer command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
beer: command not found
or when using sudo you get the following error message
sudo: beer: command not found
Solutions to beer: command not found
How To Fix beer: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu beer is provided by gerstensaft package.
gerstensaft is:
Gerstensaft is an easy to use graphical oriented frontend for sendfile(1). It features sending files and directories and provides a history for addresses.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gerstensaft
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gerstensaft.
sudo apt -y install gerstensaft
Or if you have aptitude installed you can use the following command.
sudo aptitude install gerstensaft
Summary
In this tutorial we learn how to fix beer command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.