Home
Main website
Display Sidebar
Hide Ads
Recent Changes
View Source:
CUPSNotes
Edit
PageHistory
Diff
Info
LikePages
You are viewing an old revision of this page.
View the current version
.
!!!Printing to PDF If you have an application that can't output natively to PDF, you can create yourself a PDF printer. # Get the backend for it - look for PDF Distiller Script from http://printing.kde.org/downloads/ # Install this as 'pdf' in /usr/lib/cups/backends, and set it world executable. # You may need to restart CUPS (e.g. on RedHat systems run 'service cups restart') # You probably need GhostScript installed (try looking for a package called gs-common) for ps2pdf(1). # Add a printer, either using the web interface (http://localhost:631/), XimianDesktop's printer interface, or the command line: lpadmin -p PDFcreator -v pdf:/home/chris/PDFfiles -E -P /path/to/distiller.ppd You can use any "raw" ppd you want really - I used the Raw/Raw (en) option in the installer, and it worked fine. You can download a color postscript ppd file from the [cups-pdf site|http://cip.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/]. Create the printer with the [URI] of pdf:/where/you/want/the/output. Easy as that. Then you can set [Samba] up to print to this printer via [CUPS]. There are some notes on how this can be used with [Samba] to email PDFs to you on the [SambaPDFPrinter] page (Which also has a PDF Printer setup for LPRng). There is also a [cups-pdf|http://cip.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/] virtual backend which can be used to print to pdf from cups. Your distribution should distribute this - for example, Debian (Sarge or Sid) users can "apt-get install cups-pdf". ---- !!! Cups and SAMBA See the SambaPrinting page for more information ---- !!! Auto-discovery of printers [CUPS] can do broadcasts over a network to both advertise the availability of local printers as well as to find and "proxy" for remote printers. On a [LAN] this is probably what you want, but if you are on the MetaNet this may result in other people seeing your printers, and you seeing theirs. This can have unpleasant side-effects: for example, my cups found remote printers that were later firewalled/disconnected or removed. Later that day when starting a [GNOME] application, it would hang on start-up as the gnome printing backend tried contacting the remote printers which were now un-contactable. Anyway, the lesson is to edit cupsd.conf to disable this. (This is in the /etc/cups/ directory in [Debian] and RedHat.) Either disable browsing completely by adding the line: Browsing off Or set the network/address mask for the !BrowseAllow/!BrowseDeny variables (for incoming broadcasts) and !BrowseAddress (for outgoing broadcasts). Debian [Woody] defaults to browsing on, accepting incoming information from anywhere and not sending out any information. ---- !!! Setting up a Brother Laser printer These are just some observations of what I did to set up a Brother HL 1440 laser printer (using the [USB] port) on a machine that already had [CUPS] installed, and had an HP Deskjet installed. This was done on debian woody (or close enough to woody) remotely via an ssh connection. These instructions also worked perfectly for a Brother HL 1430 on a Redhat 9 system running XimianDesktop although I didn't use any of the graphic configuration tools. ! Preparation Make sure the kernel has USB Printer support. I created a kernel module (CONFIG_USB_PRINTER) and made sure it installed ok. Make a device file. I assume people using devfs don't need to do this manually. I did: mkdir /dev/usb mknod /dev/usb/lp0 c 180 0 although some people use the name "/dev/usb/usblp" instead. ! Config files Foomatic is the cups package with all the printer description files (*.PPD) and setup stuff. To determine which driver cups needs to use, you do # foomatic-configure -O | less which lists all the supported printers, and search for your printer. If I search for "1440" I find an entry for the new printer that includes the line <driver>hl1250</driver> Now the magic line: foomatic-configure -s cups -n Brother -c file:/dev/usb/lp0 \ -p Brother-HL-1440 -d hl1250 -o !PageSize=A4 (This should all be on one line, without the "\") This says to use the cups printing system, and name the new printer "Brother". The -p and -d options are the printer ID and driver I got from the previous step in the output. Also I used an option to set the default page size to A4. Note that this can't be done until the printer is connected, as I got a "client-error-not-possible" error until someone at the remote end plugged the new printer into the USB port. You can also access cups by going to http://localhost:631 and authenticating as any user in the "lpadmin" group (I used root). From here I printed a test page and made this the default printer. You can also make it the default printer by editing /etc/cups/printers.conf or with the command "lpadmin -d Brother" ! /etc/printcap 4) Edit /etc/printcap for "[Legacy]" applications. cups does make a printcap file, but in debian the default name is /etc/printcap.cups. Just copy that - it had empty entries for my two installed printers. ! Gotchas remove ~/.lpoptions (for all users) as that hard-coded the default printer to be the old one! I don't know what created that file, as only some users had it. Check for a PRINTER environment variable and make sure that it's either unset or set correctly. ------------------------ I'm using linux debian woody, with kernel 2.4.18 mknod /dev/usb/lp0 c 180 0 allowed cups to see the printer but not to work. The only solution seems to upgrade the kernel or to use a different printer.c that comes from hpoj.sourceforge.net, but I still have not tested it... ''Possibly to do with the [USB] support in the kernel?'' -- JohnMcPherson ---- See CupsAccounting Part of CategoryPrinting
7 pages link to
CUPSNotes
:
CUPS
HotPlugNotes
UserSubmittedNotes
Printer
SambaPDFPrinter
CreatingPDFs
HardwareNotes