Printing: Difference between revisions
imported>Wentasah m Add a note about removal of soon to be outdated section. |
imported>Onny Add command line usage examples |
||
| Line 14: | Line 14: | ||
Depending on your desktop environment, there are several graphical tools available which will connect to this backend service and allow you a more convenient printer management, for example <code>system-config-printer</code>. | Depending on your desktop environment, there are several graphical tools available which will connect to this backend service and allow you a more convenient printer management, for example <code>system-config-printer</code>. | ||
=== Command line === | |||
List printers | |||
<syntaxhighlight lang="bash"> | |||
# lpstat -p | |||
</syntaxhighlight> | |||
Print test page | |||
<syntaxhighlight lang="bash"> | |||
# lp -o job-sheets=standard,none /dev/null | |||
</syntaxhighlight> | |||
List jobs | |||
<syntaxhighlight lang="bash"> | |||
# lpstat | |||
</syntaxhighlight> | |||
Cancel job | |||
<syntaxhighlight lang="bash"> | |||
# cancel 1 | |||
</syntaxhighlight> | |||
== Configuration == | == Configuration == | ||