- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Increasing printing speed
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2007 02:25 PM
09-25-2007 02:25 PM
Are there any possibilities to increase the printing speed in a printer? From HPUX server side
Please help me
Thanks in advance
Regards
Thomas
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2007 03:20 PM
09-25-2007 03:20 PM
SolutionIf this is a network printer, it's possible that a faster network connection will help marginally but normally the computer can transmit data to the printer MUCH faster than it can be printed. It's also possible there is a speed/duplex mismatch between this printer and its corresponding switch port. Now, if the output is complex graphics then perhaps something can be done but if and only if more data are provided.
One rather simple test is to modify the printer interface file to send data to a file rather than the printer. (Of course, this assumes that you are using the lp subsystem --- yet another tiny detail you neglected to mention.) If the data can be "printed" to a file rather quickly then the bottleneck is not the host computer but the printer itself or the network link.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2007 03:33 PM
09-25-2007 03:33 PM
Re: Increasing printing speed
Regards
Thomas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2007 03:53 PM
09-25-2007 03:53 PM
Re: Increasing printing speed
We are using network printer & lp subsystem
Can you tell me how to modify printer interface file to send data to a file rather than the printer.
Regards
Thomas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2007 02:37 AM
09-26-2007 02:37 AM
Re: Increasing printing speed
1) cd to /var/spool/lp/interface
2) cp -p myprinter myprinter.safe # so we can restore the original
3) vi myprinter
You will probably see a line similar to this:
$REALMODEL $job $user "$title" $copy "$options" $files | $HPNPF $HPNPFOPT 2>>$LOG > /dev/null
Comment this line out by placing a '#' at the beginning of the line and insert a similar to this:
$REALMODEL $job $user "$title" $copy "$options" $files | cat - > /tmp/myprinter.out
Save the file and try your lp command. There is no need to do an lpshut/lpsched after these changes.