Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

LF/CR problems

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hi,
I am currently trying to setup a Xerox DC285 on a sco unix server, When it prints from a database it prints a single line then starts a new page and prints another line.
I cant set lf/cr on the xerox printer and i need another means to get around this problem. I was thinking of adding a filter to the printcap file 'Nl' but i dont know where to add the filter, Has anyone got any other suggestions ??

Thanks in Advance...
 
You need a vertual printer to add the cr: see
Also:

From
How do I stop staircase output on the printer?

Staircase is when you printer prints like this:

Everything starts out OK, but when you reach
the end of a line, it moves
down but not back


This is caused by the different ways that DOS and Unix handle the end of a text line. Unix ends a line with a LF (Line Feed, 0x0A) character, while DOS uses both a LF and a CR (Carriage Return, 0x0D).

If a printer is expecting both characters, getting only a LF tells it to only do a Line Feed without a Carriage Return, so that's just what it does, and that's just what you get.

There are at least five ways to fix this:

*

Change the printer so that it generates a CR when it gets a line feed. Most printers can do this, and if you use it for DOS, it just means there is an "extra" CR, which changes nothing. This is done with dip switches or a printer configuration panel.
*

Change the printer by sending it whatever escape sequences it needs to add CR's to LF's. This is going to vary, and you are going to need to add it in the interface script low enough that it doesn't get reset by some other command being sent out.
*

Set the "stty onlcr opost" in the interface script. This can be done from the printer manager on Release 4 and 5, or by using the "crnlmap" model; unfortunately it does not always work (for example, it can't work for network printers). See: *

Move the "stty onlcr opost" to a "hold-open" script (see the article on serial printers) for this port. This works, but it's annoying, and again won't work for network printers.
*

Filter the output through /usr/lib/lponlcr. This involves piping the output through that on it's way out. In the "standard" script, you might set "FILTER=/usr/lib/lponlcr". In other scripts, just add " | /usr/lib/lponlcr" on the line that cats the file.
*





If you are using an HP network printer, you can add "-n" or even "-N" to the the interface.

Don't add it to the "HPNPF=" line; add it in the line(s) that actually uses $HPNPF. For example, you'd change

if $REALMODEL "$@" | $HPNPF -x $PERIPH 2> $LOG > /dev/null
to
if $REALMODEL "$@" | $HPNPF -x $PERIPH -n 2> $LOG > /dev/null


See man hpnpf

David DiPieto offered these thoughts:

Date: Tue, 29 Dec 1998 16:05:40 -0500
From: David DiPietro <abacus@garden.net>
To: tony@pcunix.com
Subject: printer stairstepping ...
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

I thought I'd share a little opost experience with you. When I install our application software I automatically add a &quot;holdopen&quot; for each parallel and serial printer to append the <cr> to <lf> as you mention in your printer discussion. Most of our sites now involve some kind of
networking and printer sharing. I had been putting the high-speed lasers on the parallel ports on the SCO Unix server but starting having a problem with Windows applications printing graphics. I would often loose data or get garbled graphics. I finally decided to take the ime
to figure out what was going on using the hex dump mode on a Lexmark Laser. Apparently, and with understanding, having opost onlcr turned on will do a straight binary filter of the printer data replacing all <nl> with <cr><nl> - even if it occurs in the middle of a raster graphics string. This could - and will most likely - reak havoc on the output!

You may want to address this in your discussion. In my case, the problem was solved completely by turning on the auto <cr> at the printer.
Dave DiPietro/Abacus Systems Inc.
(973) 875-9900
Tony Lawrence
SCO Unix/Linux Resources tony@pcunix.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top