- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- migrate printers to RH under CUPS config
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
тАО04-18-2005 10:11 AM
тАО04-18-2005 10:11 AM
We have a HPUX 11.x print server right now. All if working OK.
We will be having a project to setup a RH Linux system as the print server. The Linux will be running CUPS as well.
How to migrate the printers from HPUX to Linux/CUPS? I can get printer names from the HPUX, but where to put them in Linux/CUPS?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-19-2005 11:16 PM
тАО04-19-2005 11:16 PM
Re: migrate printers to RH under CUPS config
Pls have a look at the follwoing files:
Under /etc/cups
1.cupsd.conf
2.printers.conf
3.clinet.conf
Hope this info is useful
Rgds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-20-2005 02:30 AM
тАО04-20-2005 02:30 AM
Re: migrate printers to RH under CUPS config
CUPS offers the same set of lp* commands for administration and printer/job handling.
I even think it comes with BSD like implementations.
However, probably the easiest way to do single task would be using a Webbrowser and connect to Port 631 over IPP.
There must be toolsets for all sorts of scripting languages for IPP that are more suited for bulk operations.
Maybe you could start here:
http://www.cups.org/doc-1.1/sam.html#MANAGING_PRINTERS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-20-2005 03:15 AM
тАО04-20-2005 03:15 AM
Re: migrate printers to RH under CUPS config
I had to write a script that did an lpstat -a and extracted the printer names into lpadmin. When adding printers though, CUPS' lpadmin requires the ppd file as an argument. Each printer has a different PPD file (if you require the printer specific options). You can only script this if you have a way to map the printername to the physical characteristics of the printer, such as a printer inventory.
I was only able to do this because we keep a printer inventory with the printer name, model, location, etc. I was easily able to map a PPD file to each type of printer (we also had a limited number of printer types).
This could also be done if you have an intelligent printer naming convention IE: For us, hpljxxx is an HP with jetdirect. To which CUPS prints to port 9100 as opposed to 631 (IPP).
-paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-20-2005 03:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-20-2005 03:42 AM
тАО04-20-2005 03:42 AM
Re: migrate printers to RH under CUPS config
Thanks all