- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Printing issues
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
Discussions
Discussions
Discussions
Forums
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
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
тАО05-23-2006 08:14 AM
тАО05-23-2006 08:14 AM
Printing issues
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2006 08:18 AM
тАО05-23-2006 08:18 AM
Re: Printing issues
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2006 08:28 AM
тАО05-23-2006 08:28 AM
Re: Printing issues
$1 = jobid
$2 = user
$3 = title
$4 = number_of_copies
$5 = options (-o nobanner -o postscript ..)
shift 5
$* now contains the filenames to be printed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2006 08:48 AM
тАО05-23-2006 08:48 AM
Re: Printing issues
For more information about HPDPS, check http://docs.hp.com/en/B2355-90156/index.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2006 04:29 PM
тАО05-23-2006 04:29 PM
Re: Printing issues
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.
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.
For creating the file printer follow the steps,
# touch /tmp/printer
# chmod 644 /tmp/printer
# chown lp /tmp/printer
# lpshut
# lpadmin -pyour_printer_name -v/tmp/printer -mdumb ----> (Ex:lpadmin -pfileprinter -v/tmp/printer -mdumb)
# accept your_printer_name ---->(Ex:accept fileprinter)
# enable your_printer_name ---->(Ex:enable fileprinter)
# lpsched
If you give #lp -dfileprinter /etc/inittab command it will append the data to the file /tmp/printer.
Now you can print this /tmp/printer to the actual printer device by issuing the command,
#lp -d /tmp/printer
Ganesh.