Regístrese ahora para una mejor cotización personalizada!

How to print from Linux using only the command line

Oct, 28, 2024 Hi-network.com
Utamaru Kido/Getty Images

Back in the early 2000s, I remember connecting to my desktop computer via SSH (from another location) while my girlfriend at the time was at my desk. I sent the following command to the printer:

echo "I love you" lp

Theprinter spat out a page with that single line. Within moments, she called me to ask if my printer was possessed or if I was just being cute. Guilty as charged.

Also: How to schedule Linux commands - and when you should

On several occasions over my decades of using Linux, I've had to print a file but didn't have a GUI desktop available, either because I was logged into a server without a desktop environment or had logged into a desktop remotely (via SSH) and only had the command line.

Either way, Linux makes printing from the command line very easy. Better still, it's all built into your distribution -- as long as you have a printer connected and configured, you can do it. 

How to print from the Linux command line

What you'll need: A running instance of Linux (it doesn't matter what distribution you use) and a connected and configured printer.

1. Locate your printer

This is only necessary if you have multiple printers connected to your machine. I've run into such situations when Linux is being used as a print server with several connected printers. If that's your case, you'll need to know which printer to use.

Also: Why Spacedrive is the cross-platform file manager of your dreams

You shouldn't have to open a terminal window, as you're probably already looking at it now (seeing as how you're looking to print without a GUI). With the command prompt at the ready, you'll need to locate the printer name to use with the command:

lpstat -p

You should see a listing of all attached printers. For example, on my Pop!_OS desktop, I see:

printer HL-L2300D-series is idle.  enabled since Mon 21 Oct 2024 10:24:00 AM EDT

The name of my printer isprinter HL-L2300D-series.

2. View print queues

You might also want to view the printers and print queues. For that, you could issue the command:

lpstat -p  awk '{print$2}'  xargs -n1 lpq -P

 Theawkcommand is used for pattern scanning andxargsis used to build and execute command lines from standard input. 

Also: 5 Linux commands I use to keep my device running smoothly

The output for the above command might look like:

HL-L2300D-series is readyno entries

Now it's time to print from the command line. First, I'll show you how to print when you only have a single printer attached to your machine.

Printing with one attached printer

Let's say you want to print the file zdnet.txt with your default printer. The command for that would be:

lp zdnet.txt

You should see something like this in the output:

request id is HL-L2300D-series-59 (1 file(s))

The file should print, and you're done.

Printing with multiple attached printers

If you have several printers attached, you'll first need to find the name of the printer you want to use (see step one) and then use that name in the command like so:

lp zdnet.txt -d HL-L2300D-series

The -doption stands fordestination, so you'll want to add the name of the printer after that.

Also: The first 5 Linux commands every new user should learn

Your file should print, and you're ready to move on to the next file.

Featured

Best Black Friday deals 2024: 165+ sales live now featuring some of the lowest prices everCan your old PC handle the Windows 11 upgrade? How to find out - before you tryTech winners and losers of 2024: The year in true innovation and total product flopsHow to control Windows with Super God Mode (and enjoy settings omniscience)
  • Best Black Friday deals 2024: 165+ sales live now featuring some of the lowest prices ever
  • Can your old PC handle the Windows 11 upgrade? How to find out - before you try
  • Tech winners and losers of 2024: The year in true innovation and total product flops
  • How to control Windows with Super God Mode (and enjoy settings omniscience)

tag-icon Etiquetas calientes: tecnología Servicios y Software Sistemas operativos

Copyright © 2014-2024 Hi-Network.com | HAILIAN TECHNOLOGY CO., LIMITED | All Rights Reserved.