如何从终端列出所有可用的打印机?


16

我需要一个命令来列出Ubuntu中的可用打印机。

打印机列表可以安装还是共享?

此列表还应说明打印机的状态。

对实现我的目标有帮助吗?

Answers:


23

命令 lpstat -p将列出桌面上所有可用的打印机。

以及它们是否可用(它们的状态)。


7

如果只需要打印机名称:

lpstat -p | awk '{print $2}'

要查看其名称和打印队列:

lpstat -p | awk '{print $2}' | xargs -n1 lpq -P
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.