My job wants me to install the following utilities on our Ubuntu server:
lp
lpstat
cancel
mail
I have no idea how to do it.
Thank you very much in advance for your time.
My job wants me to install the following utilities on our Ubuntu server:
lp
lpstat
cancel
mail
I have no idea how to do it.
Thank you very much in advance for your time.
In order to use lp
, lpstat
and cancel
, you need to install and configure a printer.
In the process of installing the printer, you're going to install cups-client
, which contains these utilities.
The mail
program is in mailutils
To install both of these, type
sudo apt-get install cups-client
sudo apt-get install mailutils
Afterwards, you may want to
Install the cups-client
and mailutils
packages.
You can do this from GUI (System → Administration → Synaptic Package Manager) or using the command line (terminal) with this command:
sudo apt-get install cups-client mailutils
mail
itself won't work without a mail server. – raj May 30 '21 at 12:18