Using System V interface scripts with CUPS printing







Author: TonyLawrence
Date: Tue Mar 15 12:00:16 2005
Subject: Using System V interface scripts with CUPS printing

Using System V interface scripts with CUPS printing

CUPS is a powerful and flexible printing system, but sometimes all we need is the simplest things. For example, very often for application printing, all I want is a raw queue. I just want cups to pass my data untouched to some device. That's easy enough with cups:

 
lpadmin -p myprinter -E -v parallel:/dev/lp 
 

is all that is needed. The "-v" could also go to a network port or a serial port.

But what if I wanted to add an automatic form feed to the end of that, or do some other special processing? I'd have to get into cups ppd files, add a filter - a lot of work for something so simple.

It doesn't have to be. Cups can use System V interfaces scripts. We'll create a simple script that just adds a form feed:
 
#!/bin/bash 
shift;shift;shift;shift;shift 
cat $* 
echo -e "\f\c" 
 
Let's say we called that script "/tmp/myff". We add it to the raw printer like this:
 
lpadmin -p myprinter -E -i /tmp/myff -v parallel:/dev/lp 
 
YOU CAN ONLY USE SYS V INTERFACES SCRIPTS WITH RAW PRINTERS. No PPD files will be used, no other filters will be processed. This script will be the ONLY thing your data passes through.

The /tmp/myff will be copied to /etc/cups/interfaces. If you now send a job:
 
date | lp -d myprinter 
 
a form feeed will be added.

By the way, that #!/bin/bash isn't optional here. Cups uses execve to run the script, so it needs a binary file or an interpreter line like that.

I threw away everything else here, but the variables passed to the script are the job number, the user, the source of the data (stdin), the number of copies, and finally the actual data file. So for the invocation above, the five variables I shifted away might have been
 
17 root (stdin) 1 /var/spool/cups/d00017-001 
 

Obviously, there's much more that you can do at this level - emailing, data transformation, whatever you need. However, for complicated tasks, the cups filtering system does have advantages, so this method should be reserved for the simple cases.

See also foomatic,magicfilter
CUPS print to file - the hard way!
What are printer interface scripts?




Click here to add your comments





Sun Oct 16 23:26:15 2005: Subject:   bruceg2005


When you add /tmp/myff, this is at the creation of the printer. Is it possible to add a filter to an existing printer?

- Bruce



Mon Oct 17 09:18:30 2005: Subject:   TonyLawrence

gravatar
Not likle this, no. SysV filters are all or nothing. A "backend" filter is a little more complicated, but can be added to any printer (well, not a SysV style, but any ordinary cups printer).

But as I said in various places here, cups is complicated. Sometimes that's good, but it has a steep learning curve.



Mon Oct 17 13:51:39 2005: Subject:   bruceg2004


I purchased the ESP Print Pro version (by the writers of CUPS) - http://www.easysw.com - and they have some good bulletin boards for asking questions. I have already made some suggestions, which the author will incorporate into PrintPro 5.

The one thing I like about the "Pro" version of CUPS, other than the support system, is the graphical front end to 'lp', called 'glp'. This gives you more of a "Windows" type of print dialog for your jobs, which is greatly needed. Although KDE has a very nice interface, this is even more complete.

I will ask the support system what the easiest way to do what I am asking is, and post back here. The author is the one who answers the majority of support questions, which is nice. Usually, within 24 hours.

- Bruce




Mon Jul 2 17:35:21 2007: Subject:   TonyLawrence

gravatar
I just had someone unable to do this - problem was the same as described at http://aplawrence.com/Bofcusm/1613.html

Don't use Windows to write your scripts!!!



Fri Aug 14 23:45:25 2009: Subject: Doing the opposite...   Marcelo

gravatar
Hi there... I got the inverse problem you'd described in your example.

I receive print jobs from a mainframe via LPD. And it worked pretty well in my old Conectiva 8.0 (Brazilian Distro). But it crashes... then I'm trying Ubuntu 9.04 (yes I know it's pretty fresh).

The problem is that cups-lpd, the work-around for cups listen on port 515 an receive LPD jobs, adds a #$#$#$&% form feed at every job.

The epson FX-890, responsible to the hard work is printing a blank page at each job, thus wasting a lot of paper.

I'm scrutinizing the Internet to fix that, and I refuse to go back to Conectiva 8.0 - it's a honor matter :-) !

So I've found your page...

May I do a script to remove that form feed?
Any ideas?

Thanks in advance,

Marcelo



Sat Aug 15 02:18:05 2009: Subject:   TonyLawrence

gravatar
That's in the printcap file.

Add ":sf:" to suppress formfeed.



Sat Aug 15 14:05:29 2009: Subject: Ubuntu overrides printcap   Marcelo

gravatar
Yes I know "sf" do the magic, the problem is, at least in Ubuntu 9.04, that the /var/run/cups/printcap is written by cups itself, and any changes you make on it are lost. The /etc/printcap is of no use, all CUPS uses is the /etc/cups/ppd/myprinter.ppd.

Heeeeeeeeelp!

cartoon
Looking for Mac OS X Help?
OS X PDF e-books
Inexpensive, instant download






Sat Aug 15 14:12:05 2009: Subject: oops   Mabafu

gravatar
Oooops...

Nevermind

https://bugs.launchpad.net/ubuntu/+source/cupsys/+bug/251458

Tks anyway for your attention!

[]s

Marcelo

Don't miss responses! Subscribe to Comments by RSS or by Email

Click here to add your comments


If you want a picture to show with your comment, go get a Gravatar



/Unixart/cups_sysv_interface.html copyright All Rights Reserved

Have you tried Searching this site?

Unix/Linux/Mac OS X support by phone, email or on-site: Support Rates

This is a Unix/Linux resource website. It contains technical articles about Unix, Linux and general computing related subjects, opinion, news, help files, how-to's, tutorials and more. We appreciate comments and article submissions.

Publishing your articles here

Jump to Comments



Many of the products and books I review are things I purchased for my own use. Some were given to me specifically for the purpose of reviewing them. I resell or can earn commissions from the sale of some of these items. Links within these pages may be affiliate links that pay me for referring you to them. That's mostly insignificant amounts of money; whenever it is not I have made my relationship plain. I also may own stock in companies mentioned here. If you have any question, please do feel free to contact me.

Specific links that take you to pages that allow you to purchase the item I reviewed are very likely to pay me a commission. Many of the books I review were given to me by the publishers specifically for the purpose of writing a review. These gifts and referral fees do not affect my opinions; I often give bad reviews anyway.

We use Google third-party advertising companies to serve ads when you visit our website. These companies may use information (not including your name, address, email address, or telephone number) about your visits to this and other websites in order to provide advertisements about goods and services of interest to you. If you would like more information about this practice and to know your choices about not having this information used by these companies, click here.


book graphic unix and linux troubleshooting guide

My Troubleshooting E-Book will show you how to solve tough problems on Linux and Unix systems!



 I sell and support
 Kerio Mail server






More:




Related Posts

Cups print to file

Cups bought by Apple

Sco/Linux transition guide

CUPS and Netgear PS110

Redhat /etc/alternatives

Print to FAX with custom tags

IPP



Unix/Linux Consultants

Skills Tests

Guest Post Here








card_image






My Favorites

Change Congress