Cups

如何顯示 CUPS 列印機作業歷史記錄?

  • April 14, 2021

我正在使用 lpr 命令將一些文件從遠端電腦列印到網路列印機。它顯然有效,但幾分鐘後,當我輸入 lpstat 或 lpq 時,該作業已經消失,它可能已經列印了文件。有沒有辦法在列印機隊列中檢查我成功完成的作業的歷史記錄或日誌?

是的,存在一個程序:lpstat- 列印杯子狀態資訊

$ lpstat -W completed
-W which-jobs
     Specifies which jobs to  show,  completed  or  not-completed  (the
     default).  This option must appear before the -o option and/or any
     printer names, otherwise the default (not-completed) value will be
     used in the request to the scheduler.

或者,如果您更喜歡通過以下網頁

https://localhost:631/printers/[NameOfPrinter]?which_jobs=completed
http://localhost:631/jobs?which_jobs=completed

親切的問候

引用自:https://unix.stackexchange.com/questions/123634