[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
slackbook:printing [2012/09/12 21:07 (UTC)] – updated code block to syntax highlighting mfillpotslackbook:printing [2012/12/29 21:58 (UTC)] (current) – [Getting the driver] escaflown
Line 35: Line 35:
  
  
-  - Postscript printers use the unversal-ish language of Postscript to communicate with computers.  A driver for postscript printers is usually not needed, since a postscript-compatible subsystem called **//Ghostscript//** is already installed.+  - Postscript printers use the universal-ish language of Postscript to communicate with computers.  A driver for postscript printers is usually not needed, since a postscript-compatible subsystem called **//Ghostscript//** is already installed.
   - Gutenprint are drivers engineered by GNU Linux developers. It provides support for roughly 700 printers.   - Gutenprint are drivers engineered by GNU Linux developers. It provides support for roughly 700 printers.
   - Manufacturers may provide Linux drivers for their printers. Find out by going to the manufacturer's driver and support website and searching for your model.   - Manufacturers may provide Linux drivers for their printers. Find out by going to the manufacturer's driver and support website and searching for your model.
Line 43: Line 43:
  
  
-  - Ordered List ItemFor the manufacturer's drivers, installation is usually the same as any other software on your system; use **//installpkg//** or **//rpm2tgz//** to install the driver package. Be sure to read the documentation bundled with the drivers.+  - For the manufacturer's drivers, installation is usually the same as any other software on your system; use **//installpkg//** or **//rpm2tgz//** to install the driver package. Be sure to read the documentation bundled with the drivers.
   - For Postscript printers, there is no "installation" as such; simply download the appropriate ''PPD'' file and keep it in a sensible location on your hard drive.   - For Postscript printers, there is no "installation" as such; simply download the appropriate ''PPD'' file and keep it in a sensible location on your hard drive.
  
Line 104: Line 104:
  
          
-<code bash>+<code>
  
-darkstar:~# <command>lpinfo -m | grep 1060</command>+darkstar:~# lpinfo -m | grep 1060
 </code> </code>
  
Line 196: Line 196:
  
  
-<code bash>+<code>
 # lpadmin -d r1060 # lpadmin -d r1060
 </code> </code>
Line 219: Line 219:
  
  
-<code bash>+<code>
 $ lpr foo.txt $ lpr foo.txt
 </code> </code>
Line 242: Line 242:
  
  
-<code bash+<code> 
-darkstar:~$ <command>pr foo.txt | lpr</command>+darkstar:~$ pr foo.txt | lpr
 </code> </code>
  
 slackbook:printing ()