GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Moving printers from 10.20 to 11.11
Operating System - HP-UX
1854680
Members
11642
Online
104102
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp
Knowledge Base
Discussions
Forums
Discussions
back
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
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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-07-2006 03:47 AM
09-07-2006 03:47 AM
Hi Everyone,
Is it possible to move print queues and drivers from a 10.20 box to a 11.11 one using the sam save/restore spooler config option?
and if so are there any special steps needed to cope with the OS version change?
thanks a lot for any help with this,
cheers
Guy
Is it possible to move print queues and drivers from a 10.20 box to a 11.11 one using the sam save/restore spooler config option?
and if so are there any special steps needed to cope with the OS version change?
thanks a lot for any help with this,
cheers
Guy
'If it ain't broke, don't fix it!'
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 03:57 AM
09-07-2006 03:57 AM
Re: Moving printers from 10.20 to 11.11
Shalom Guy,
I think your methodology will work with the standard lp print spool.
Any printers supported under 10.20 should work with the later release.
SEP
I think your methodology will work with the standard lp print spool.
Any printers supported under 10.20 should work with the later release.
SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 04:05 AM
09-07-2006 04:05 AM
Solution
Yes, although I wouldn't bother with that sam stuff.
First, if you are running 10.20, you are almost certainly running JetAdmin. You need to install (using swinstall) the latest JetDirect software on your 11.11 box.
http://h20180.www2.hp.com/apps/Lookup?h_lang=en&h_cc=us&cc=us&h_page=hpcom〈=en&h_client=S-A-R163-1&h_pagetype=s-002&h_query=JetDirect
Next, you need to make sure that hostname resolution works on the new box so update /etc/hosts, if necessary so that the new box is able to resolve all the printer hostnames. You may need to do nothing if your are using DNS or NIS for hostnames other than configure /etc/resolv.conf and/or /etc/nsswitch.conf.
On the old box,
do an lpstat -t and identify any old, hung printjobs and cancel them. Next do an lpshut.
cd /
find ./var/spool/lp ./etc/lp -print | cpio -ocv > /var/tmp/lp.cpio.1020
Copy /var/tmp/lp.cpio.1020 to the new box using ftp, rcp, ... .
On the new box,
lpshut # make sure lpsched is not running
cd /
find ./var/spool/lp ./etc/lp -print | cpio -ocv > /var/tmp/lp.cpio.save # so that we won't need it, a safe copy
cpio -icvdum < /var/tmp/lp.cpio.1020
Next we need to convert all the JetAdmin interface files to use the JetDirect equivalent commands.
/opt/hpnpl/bin/transferqueue local
and when prompted respond "all".
lpsched
Now everything, including the default printer, should be good to go.
First, if you are running 10.20, you are almost certainly running JetAdmin. You need to install (using swinstall) the latest JetDirect software on your 11.11 box.
http://h20180.www2.hp.com/apps/Lookup?h_lang=en&h_cc=us&cc=us&h_page=hpcom〈=en&h_client=S-A-R163-1&h_pagetype=s-002&h_query=JetDirect
Next, you need to make sure that hostname resolution works on the new box so update /etc/hosts, if necessary so that the new box is able to resolve all the printer hostnames. You may need to do nothing if your are using DNS or NIS for hostnames other than configure /etc/resolv.conf and/or /etc/nsswitch.conf.
On the old box,
do an lpstat -t and identify any old, hung printjobs and cancel them. Next do an lpshut.
cd /
find ./var/spool/lp ./etc/lp -print | cpio -ocv > /var/tmp/lp.cpio.1020
Copy /var/tmp/lp.cpio.1020 to the new box using ftp, rcp, ... .
On the new box,
lpshut # make sure lpsched is not running
cd /
find ./var/spool/lp ./etc/lp -print | cpio -ocv > /var/tmp/lp.cpio.save # so that we won't need it, a safe copy
cpio -icvdum < /var/tmp/lp.cpio.1020
Next we need to convert all the JetAdmin interface files to use the JetDirect equivalent commands.
/opt/hpnpl/bin/transferqueue local
and when prompted respond "all".
lpsched
Now everything, including the default printer, should be good to go.
If it ain't broke, I can fix that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 01:11 AM
09-11-2006 01:11 AM
Re: Moving printers from 10.20 to 11.11
Thanks Guys,
I have now done the migration - it took hardly any time and all printers are working fine now on the new box.
I thought it was going to be a much bigger headache than it was.
Cheers
Guy
I have now done the migration - it took hardly any time and all printers are working fine now on the new box.
I thought it was going to be a much bigger headache than it was.
Cheers
Guy
'If it ain't broke, don't fix it!'
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2026 Hewlett Packard Enterprise Development LP