5

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.

BeastOfCaerbannog
  • 12,964
  • 10
  • 49
  • 77
Rob S.
  • 1,631
  • 3
  • 16
  • 15

2 Answers2

6

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

Stefano Palazzo
  • 85,787
  • 45
  • 210
  • 227
0

Install the cups-client and mailutils packages.

You can do this from GUI (System → AdministrationSynaptic Package Manager) or using the command line (terminal) with this command:

sudo apt-get install cups-client mailutils
BeastOfCaerbannog
  • 12,964
  • 10
  • 49
  • 77
LGB
  • 1,567
  • 9
  • 11