Sponsored Content
Full Discussion: Printer queue not clearing
Top Forums UNIX for Dummies Questions & Answers Printer queue not clearing Post 302972143 by bakunin on Monday 2nd of May 2016 05:25:06 AM
Old 05-02-2016
Quote:
Originally Posted by bdittmar
I did just that and it says:
Quote:
a utility to allow to to bypass the various network printing utilities
and i suppose it did just that: i do not know for certain what happened (not enough data for that), but my supposition is that the netcat-script you use bypasses the printing system so effectively that the job is not removed from the printqueue at all.

Usually a print queue works like this: there is a place where files to be printed (=sent to the printer) are dropped. There is a daemon (usually lpd) which picks up the file and - upon successful procession (=printing worked) removes it, otherwise issues an error message and does not remove it.

What fails, IMHO, is that the netcat-script needs to tell the lpd (or whatever you use in its place) about the successful (or unsuccessful) printing of the job so that the print file can be removed based on this.

I hope this helps.

bakunin
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Clearing Mail Queue

Hello, I am trying to clear my mail queue with the following command: rm /var/spool/mqueue/* But when I do this I get this error: /bin/rm: Argument list too long. Can someone tell me what that error means and what I can do to correct it so I can clear my mail queue? Thanks (2 Replies)
Discussion started by: Chet
2 Replies

2. UNIX for Advanced & Expert Users

Solaris 8 setting up a remote printer queue

I have a printer installed over ADSL to a router at a remote location. A Windows printer queue has been setup and working and I can ping the IP address from the Solaris server. I now want to add a printer queue for this printer under Solaris, but I am unsure how to setup a remote printer queue.... (0 Replies)
Discussion started by: miredale
0 Replies

3. HP-UX

Help adding a printer queue

Hello, I need some help on the following issue: Need to have a printer queue added to the "sssssss" server.The IP address is "xxx.xxx.xxx.xxx". It is an HP8000 printer. Can you please point me to the right direction. Thank you (0 Replies)
Discussion started by: AQG
0 Replies

4. AIX

Printer Queue not getting created

When I try to create first print queue in this system with the command line argument, find the output also... # /usr/lib/lpd/pio/etc/piomkjetd mkpq_jetdirect -p 'generic' -D pcl -q 'AR06_Workcenter_32' -h 'AR06_Workcenter_32' -x '9100' 0782-606 /usr/lib/lpd/pio/etc/piomgpdev: Error 'A file or... (1 Reply)
Discussion started by: giribt
1 Replies

5. Solaris

creating printer queue in Solaris 10

I have installed the foo2zjs drivers but i don't know the next steps to how to make a print queue with ppd files........kindly guide me out if anyone have used foo2jzs or some other methods to configure the hp laserjet 1022n printer.Kindly explain step by step procedure of how to do this. ... (2 Replies)
Discussion started by: kumarmani
2 Replies

6. AIX

Check printer queue on Windows printer server

Hello Let me first give a small overview of the setup. All printers are connected to Windows 2000 servers. There are a lot of UNIX (AIX & HP-UX) servers as well which have SAP running. I'm working on a script to add printers to a specified SAP instance. I want to verify the user input (to... (0 Replies)
Discussion started by: NielsV
0 Replies

7. Solaris

Cancel printer queue permission

How to assign permission for a user to cancel unix printer queue other than root? lprm -P and cancel? How to chmod for /bin/cancel to -rws-x-x --> s means? Please help. Thank you. (1 Reply)
Discussion started by: KhawHL
1 Replies

8. AIX

Cannot setup a printer queue

So I've got this asc file that someone sent me for setting up a Zebra printer on AIX. When I use smit or the command line I get this error when I try to setup the printer up: File /usr/lib/lpd/pio/predef/master does not exist. The master file is there. This only happens when I setup a... (2 Replies)
Discussion started by: Hurmoth
2 Replies

9. AIX

Problem with Queue of the Printer

Guy's This is the Queue of the printer ... >lpstat -pTOPPRINTER Queue Dev Status Job Files User PP % Blks Cp Rnk ------- ----- --------- --- ------------------ ---------- ---- -- ----- --- --- TOPPRIN @TOPP DOWN QUEUED ... (1 Reply)
Discussion started by: ITHelper
1 Replies

10. AIX

Retrieving printer queue properties

Hi everyone! I've been stuck with a job I'm struggling with. A while back we loaded a large number of printer queues into our AIX environment through smit. Since then some of the details have gone astray, including full details on the older printer queues. I need to gather together details on... (2 Replies)
Discussion started by: aoverbury
2 Replies
LPR(1)							      General Commands Manual							    LPR(1)

NAME
lpr - off line print SYNOPSIS
lpr [ -Pprinter ] [ -#num ] [ -C class ] [ -J job ] [ -T title ] [ -i [ numcols ]] [ -1234 font ] [ -wnum ] [ -pltndgvcfrmhs ] [ name ... ] DESCRIPTION
Lpr uses a spooling daemon to print the named files when facilities become available. If no names appear, the standard input is assumed. The -P option may be used to force output to a specific printer. Normally, the default printer is used (site dependent), or the value of the environment variable PRINTER is used. The following single letter options are used to notify the line printer spooler that the files are not standard text files. The spooling daemon will use the appropriate filters to print the data accordingly. -p Use pr(1) to format the files (equivalent to print). -l Use a filter which allows control characters to be printed and suppresses page breaks. -t The files are assumed to contain data from troff(1) (cat phototypesetter commands). -n The files are assumed to contain data from ditroff (device independent troff). -d The files are assumed to contain data from tex(l) (DVI format from Stanford). -g The files are assumed to contain standard plot data as produced by the plot(3X) routines (see also plot(1G) for the filters used by the printer spooler). -v The files are assumed to contain a raster image for devices like the Benson Varian. -c The files are assumed to contain data produced by cifplot(l). -f Use a filter which interprets the first character of each line as a standard FORTRAN carriage control character. The remaining single letter options have the following meaning. -r Remove the file upon completion of spooling or upon completion of printing (with the -s option). -m Send mail upon completion. -h Suppress the printing of the burst page. -s Use symbolic links. Usually files are copied to the spool directory. The -C option takes the following argument as a job classification for use on the burst page. For example, lpr -C EECS foo.c causes the system name (the name returned by hostname(1)) to be replaced on the burst page by EECS, and the file foo.c to be printed. The -J option takes the following argument as the job name to print on the burst page. Normally, the first file's name is used. The -T option uses the next argument as the title used by pr(1) instead of the file name. To get multiple copies of output, use the -#num option, where num is the number of copies desired of each file named. For example, lpr -#3 foo.c bar.c more.c would result in 3 copies of the file foo.c, followed by 3 copies of the file bar.c, etc. On the other hand, cat foo.c bar.c more.c | lpr -#3 will give three copies of the concatenation of the files. The -i option causes the output to be indented. If the next argument is numeric, it is used as the number of blanks to be printed before each line; otherwise, 8 characters are printed. The -w option takes the immediately following number to be the page width for pr. The -s option will use symlink(2) to link data files rather than trying to copy them so large files can be printed. This means the files should not be modified or removed until they have been printed. The option -1234 Specifies a font to be mounted on font position i. The daemon will construct a .railmag file referencing /usr/share/vfont/name.size. FILES
/etc/passwd personal identification /etc/printcap printer capabilities data base /usr/sbin/lpd line printer daemon /usr/spool/* directories used for spooling /usr/spool/*/cf* daemon control files /usr/spool/*/df* data files specified in "cf" files /usr/spool/*/tf* temporary copies of "cf" files SEE ALSO
lpq(1), lprm(1), pr(1), symlink(2), printcap(5), lpc(8), lpd(8) DIAGNOSTICS
If you try to spool too large a file, it will be truncated. Lpr will object to printing binary files. If a user other than root prints a file and spooling is disabled, lpr will print a message saying so and will not put jobs in the queue. If a connection to lpd on the local machine cannot be made, lpr will say that the daemon cannot be started. Diagnostics may be printed in the daemon's log file regarding missing spool files by lpd. BUGS
Fonts for troff and tex reside on the host with the printer. It is currently not possible to use local font libraries. 4th Berkeley Distribution October 22, 1996 LPR(1)
All times are GMT -4. The time now is 06:49 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy