<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Printing issues in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/printing-issues/m-p/3793571#M265403</link>
    <description>Maybe the use of HPDPS would solve your problem. &lt;BR /&gt;&lt;BR /&gt;For more information about HPDPS, check &lt;A href="http://docs.hp.com/en/B2355-90156/index.html" target="_blank"&gt;http://docs.hp.com/en/B2355-90156/index.html&lt;/A&gt;</description>
    <pubDate>Tue, 23 May 2006 15:48:25 GMT</pubDate>
    <dc:creator>Bosman, Kryno</dc:creator>
    <dc:date>2006-05-23T15:48:25Z</dc:date>
    <item>
      <title>Printing issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/printing-issues/m-p/3793568#M265400</link>
      <description>We have print jobs that run over night. Occasionaly a printer gets powered off or offline. Sometimes the job will print when it's turned back on other times it doesn't and there is no sign of it sitting in any queue. It's like the job just disappears like Unix thinks the printer was on the whole time.  In case I can't resolve that issue, is there a way to send a job 2 places at once? One to the printer and one to a file?</description>
      <pubDate>Tue, 23 May 2006 15:14:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/printing-issues/m-p/3793568#M265400</guid>
      <dc:creator>glenn b</dc:creator>
      <dc:date>2006-05-23T15:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: Printing issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/printing-issues/m-p/3793569#M265401</link>
      <description>Sorry, I'm running HP-UX 11.11</description>
      <pubDate>Tue, 23 May 2006 15:18:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/printing-issues/m-p/3793569#M265401</guid>
      <dc:creator>glenn b</dc:creator>
      <dc:date>2006-05-23T15:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Printing issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/printing-issues/m-p/3793570#M265402</link>
      <description>If this is a Network printer or local printer as opposed to a Remote printer then its fairly easy to modify the interface file in /var/spool/lp/interface/queuename (and/or the queuename file in the model.orig directory just below) to copy a file to another location. You will probably need to cxreate an output filename based upon the job id so that subsequent jobs don't overwrite the current file. &lt;BR /&gt;$1 = jobid&lt;BR /&gt;$2 = user&lt;BR /&gt;$3 = title&lt;BR /&gt;$4 = number_of_copies&lt;BR /&gt;$5 = options (-o nobanner -o postscript ..)&lt;BR /&gt;shift 5&lt;BR /&gt;$* now contains the filenames to be printed.</description>
      <pubDate>Tue, 23 May 2006 15:28:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/printing-issues/m-p/3793570#M265402</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-05-23T15:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: Printing issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/printing-issues/m-p/3793571#M265403</link>
      <description>Maybe the use of HPDPS would solve your problem. &lt;BR /&gt;&lt;BR /&gt;For more information about HPDPS, check &lt;A href="http://docs.hp.com/en/B2355-90156/index.html" target="_blank"&gt;http://docs.hp.com/en/B2355-90156/index.html&lt;/A&gt;</description>
      <pubDate>Tue, 23 May 2006 15:48:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/printing-issues/m-p/3793571#M265403</guid>
      <dc:creator>Bosman, Kryno</dc:creator>
      <dc:date>2006-05-23T15:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: Printing issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/printing-issues/m-p/3793572#M265404</link>
      <description>Hi,&lt;BR /&gt;If you send any data to the printer spooler system then you may not be able to redirect the same data to any file unless if any customised model interface for that printer.Other way we can send the data to a file first then send to the printer.&lt;BR /&gt;&lt;BR /&gt;For that we need to create fileprinter.it is nothing but the printer, instead of sending to the printer device it will send the data to a file.then we can print this file. &lt;BR /&gt;&lt;BR /&gt;For creating the file printer follow the steps,&lt;BR /&gt;&lt;BR /&gt;# touch /tmp/printer&lt;BR /&gt;# chmod 644 /tmp/printer&lt;BR /&gt;# chown lp /tmp/printer&lt;BR /&gt;# lpshut&lt;BR /&gt;# lpadmin -pyour_printer_name -v/tmp/printer -mdumb ----&amp;gt; (Ex:lpadmin -pfileprinter -v/tmp/printer -mdumb)&lt;BR /&gt;# accept your_printer_name ----&amp;gt;(Ex:accept fileprinter)&lt;BR /&gt;# enable your_printer_name ----&amp;gt;(Ex:enable fileprinter)&lt;BR /&gt;# lpsched&lt;BR /&gt;&lt;BR /&gt;If you give #lp -dfileprinter /etc/inittab command it will append the data to the file /tmp/printer.&lt;BR /&gt;&lt;BR /&gt;Now you can print this /tmp/printer to the actual printer device by issuing the command,&lt;BR /&gt;&lt;BR /&gt;#lp -d /tmp/printer&lt;BR /&gt;</description>
      <pubDate>Tue, 23 May 2006 23:29:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/printing-issues/m-p/3793572#M265404</guid>
      <dc:creator>Ganesan R</dc:creator>
      <dc:date>2006-05-23T23:29:36Z</dc:date>
    </item>
  </channel>
</rss>

