HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

lpinfo — List connected printers and installed drivers for the CUPS print server. More information: <https://

Submitted by: @import:tldr-pages··
0
Viewed 0 times
connectedcommandprinterslpinfoandclilistinstalled

Problem

How to use the lpinfo command: List connected printers and installed drivers for the CUPS print server. More information: <https://openprinting.github.io/cups/doc/man-lpinfo.html>.

Solution

lpinfo — List connected printers and installed drivers for the CUPS print server. More information: <https://openprinting.github.io/cups/doc/man-lpinfo.html>.

List all the currently connected printers:
lpinfo -v


List all the currently installed printer drivers:
lpinfo -m


Search installed printer drivers by make and model:
lpinfo --make-and-model "{{printer_model}}" -m

Code Snippets

List all the currently connected printers

lpinfo -v

List all the currently installed printer drivers

lpinfo -m

Search installed printer drivers by make and model

lpinfo --make-and-model "{{printer_model}}" -m

Context

tldr-pages: common/lpinfo

Revisions (0)

No revisions yet.