- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to setup a laser printer with HP-UX 11.0
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
тАО11-11-2002 02:01 AM
тАО11-11-2002 02:01 AM
I want to setup a Lexmark Laser Printer to print text files from UNIX, can anyone tell me how this is done?
Have tried through sam to setup as a line printer, but the text is not printed correctly.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-11-2002 02:18 AM
тАО11-11-2002 02:18 AM
Re: How to setup a laser printer with HP-UX 11.0
I use HP jet/web admin, you can download from HP it is very easy to use.
Regards,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-11-2002 02:21 AM
тАО11-11-2002 02:21 AM
Re: How to setup a laser printer with HP-UX 11.0
I use Laserprinter attached to an NT domain. I configure them through SAM. (One of the few tasks mankind should SAM for ;-))
Works always without a problem.
HTH
Donald
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-11-2002 03:25 AM
тАО11-11-2002 03:25 AM
Solutionyou can swinstall the hpjetadmin package onto your system. Once you've done that, you can add a printer easily from SAM. Go to printers and plotters, then LP Spooler, then Printers & Plotters. When in this sub menu you can go Actions -> Add NEtwork-Based Printer/Plotter -> Add Printer/Plotter Connected to HP JetDirect.
Chuck J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-11-2002 03:35 AM
тАО11-11-2002 03:35 AM
Re: How to setup a laser printer with HP-UX 11.0
I use jetadmin to set up laser printers, or you can set them up through SAM
Regards,
Hilary
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-11-2002 05:08 AM
тАО11-11-2002 05:08 AM
Re: How to setup a laser printer with HP-UX 11.0
BSD printing is accomplished with the lpr command and uses a printcap file to perform printer setup tasks. All formatting performed by the spooler is done prior to send the file to a remote location. SysV printing uses the lp command and relies on printer scripts to perform special formatting. Both BSD and SysV use RFC 1170 as the standard for printing to a remote server.
However, SysV performs NO formatting when sending a file to the remote system. Instead, it expects the remote computer to perform this task, something that NT/Win2K or a non-HP-UX system will not do. Thus, your ASCII text files will print stairstep mode across the page because the required CR is not being inserted by the remote server.
The Lexmark (and virtually all other network printers) are remote servers and know nothing about -o options or printer scripts required by SysV standards. So to print ASCII files correctly, you will have to run them through a filter locally like this:
ux2dos file_to_print | lp -dremote_printer
If the Lexmark has the option (like many HP LaserJet printers) to add CR to every LF character, this may be an option, but you'll have to ensure that this option remains set in the printer. Options like -olandscape or -oduplex will be ignored by non-HP-UX systems. The solution is to replace the Lexmark network connection with an HP JetDirect print server (external box) and then setup the printer as a Network-based printer.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-11-2002 05:52 AM
тАО11-11-2002 05:52 AM
Re: How to setup a laser printer with HP-UX 11.0
Thats exactly the info I was looking for
alan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-11-2002 06:41 AM
тАО11-11-2002 06:41 AM
Re: How to setup a laser printer with HP-UX 11.0
lp ???d
Chuck J