- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Moving printers to other nodes
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
01-11-2002 06:47 AM
01-11-2002 06:47 AM
Moving printers to other nodes
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 06:58 AM
01-11-2002 06:58 AM
Re: Moving printers to other nodes
GL,
C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 07:02 AM
01-11-2002 07:02 AM
Re: Moving printers to other nodes
Install the jetadmin on the other node then
use sam to export on 1 machine and import on the other.The save is in /var/sam/lp
It is in printer plotters
LP spooler
save restore spooler config
Overview of Spooler Configuration Window ^
| The Save/Restore Spooler Configuration window is one of several that
| are related to managing Printing and Plotting devices. This window is |
| used specifically to save the current spooler configuration and restore |
| it. To change to other printers/plotters subareas, use the [List] menu. |
| . |
| |
| The Save/Restore Spooler Configuration window displays a list of all |
| printers and plotters and classes that existed when the last save was |
| done. See Interpreting the Spooler Configuration List for more |
| information about this list. |
| Use This Window To:
* Save the current spooler configuration and related information ^
| about printers, plotters, and device classes. (SAM automatically |
| saves the current configuration each time it is changed when you |
| use SAM to make the changes.) No information about print requests
| is preserved. |
| |
| * Restore the previously saved spooler configuration. This is usually |
| in response to the spooler becoming corrupt, and is an easy way to |
| recreate the most recently saved configuration. Any pending jobs |
| are lost because the current queues are destroyed during |
| restoration. |
|
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 07:02 AM
01-11-2002 07:02 AM
Re: Moving printers to other nodes
TOmmy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 07:02 AM
01-11-2002 07:02 AM
Re: Moving printers to other nodes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 07:05 AM
01-11-2002 07:05 AM
Re: Moving printers to other nodes
Writing a simple script might ease out your work.
#lpstat -p |grep printer |awk '{print $2}' >PRINTER_LIST
Will list all your printers on existing system.
As long as you have these printers with their ip defined in /etc/hosts or in NIS, you can use addqueue command to create printers of remote system.
#addqueue -h
To create printers listed in "PRINTER_LIST" file created on old host,
for i in `cat PRINTER_LIST`
{
addqueue -h
}
HTH
Thanks.
Prashant.