<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Printer migration in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/printer-migration/m-p/3182812#M163208</link>
    <description>Hi Russell,&lt;BR /&gt;&lt;BR /&gt;If you have JetDirect Printer Installer or the newer named products, they have a command named&lt;BR /&gt;transferqueue&lt;BR /&gt;that is specifically for this task.&lt;BR /&gt;command would be something like:&lt;BR /&gt;/opt/hpnpl/bin/transferqueue backup&lt;BR /&gt;that will create a tarball named&lt;BR /&gt;/tmp/queues.tar&lt;BR /&gt;that can be used to "import" the queues onto the newly loaded system.&lt;BR /&gt;See &lt;BR /&gt;/opt/hpnpl/TRANSFER.UNX&lt;BR /&gt;for details.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
    <pubDate>Wed, 04 Feb 2004 10:40:19 GMT</pubDate>
    <dc:creator>Jeff Schussele</dc:creator>
    <dc:date>2004-02-04T10:40:19Z</dc:date>
    <item>
      <title>Printer migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/printer-migration/m-p/3182810#M163206</link>
      <description>I am currently upgrading a number of HPUX 10.20 systems to HPUX 11.00 on new hardware.  I've been able figure out what I need to tarball on each system to retain their 'settings' for everything EXCEPT the PRINTERS.  Making an ignite image for each system is impractical.  I've created a standard HPUX 11 ignite image which is installed first, then the 'system personality' tarball is installed next.  This tarball includes system specific configuration info (host, dns, netconf, senmail, etc . . . ) along with application specific directory trees.&lt;BR /&gt;&lt;BR /&gt;Is there a list of files and/or directories that I can tar up and copy over that will migrate the printers without having to re-configure them on the new machine?</description>
      <pubDate>Wed, 04 Feb 2004 10:33:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/printer-migration/m-p/3182810#M163206</guid>
      <dc:creator>Russell James Walicki</dc:creator>
      <dc:date>2004-02-04T10:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Printer migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/printer-migration/m-p/3182811#M163207</link>
      <description>I've used SAM to move printer configs to other servers, all in vers. 11.0. It works great,&lt;BR /&gt;save spooler config==&amp;gt; makes a file in the one of the SAM subdirs. Move that file over to new system, run sam resore spooler config, and you're there. &lt;BR /&gt;or I imagine you could copy all of the files under /var/spool/lp to the new system...</description>
      <pubDate>Wed, 04 Feb 2004 10:40:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/printer-migration/m-p/3182811#M163207</guid>
      <dc:creator>doug mielke</dc:creator>
      <dc:date>2004-02-04T10:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: Printer migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/printer-migration/m-p/3182812#M163208</link>
      <description>Hi Russell,&lt;BR /&gt;&lt;BR /&gt;If you have JetDirect Printer Installer or the newer named products, they have a command named&lt;BR /&gt;transferqueue&lt;BR /&gt;that is specifically for this task.&lt;BR /&gt;command would be something like:&lt;BR /&gt;/opt/hpnpl/bin/transferqueue backup&lt;BR /&gt;that will create a tarball named&lt;BR /&gt;/tmp/queues.tar&lt;BR /&gt;that can be used to "import" the queues onto the newly loaded system.&lt;BR /&gt;See &lt;BR /&gt;/opt/hpnpl/TRANSFER.UNX&lt;BR /&gt;for details.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
      <pubDate>Wed, 04 Feb 2004 10:40:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/printer-migration/m-p/3182812#M163208</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2004-02-04T10:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: Printer migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/printer-migration/m-p/3182813#M163209</link>
      <description>It's rather easy.&lt;BR /&gt;&lt;BR /&gt;1) Go ahead and install the newer JetDirect (as opposed to JetAdmin) software on your 11.0 box. Make sure all your printer hostnames are defined in /etc/hosts, DNS, and/or NIS(+).&lt;BR /&gt;&lt;BR /&gt;2) On your 11.0 box, do an lpshut.&lt;BR /&gt;&lt;BR /&gt;3) Now, we will save the 11.0 stuff -- just in case.&lt;BR /&gt;   cd /&lt;BR /&gt;   find ./etc/lp ./var/spool/lp -print | cpio -ocv &amp;gt; /mydir/lp1100.cpio&lt;BR /&gt;&lt;BR /&gt;4) Now on your 10.20 box:&lt;BR /&gt;   lpstat -t and look for any hund/old print jobs. Cancel them -- no point in moving them.&lt;BR /&gt;   lpshut&lt;BR /&gt;&lt;BR /&gt;5) cd /&lt;BR /&gt;   find ./etc/lp ./var/spool/lp -print | cpio -ocv &amp;gt; /mydir/lp1020.cpio&lt;BR /&gt;   rcp/ftp /mydir/lp1020.cpio to your 11.0 box&lt;BR /&gt;&lt;BR /&gt;6) Now back on the 11.0 box,&lt;BR /&gt;   cd /&lt;BR /&gt;   cpio -icvdum &amp;lt; /mydir/lp1020.cpio&lt;BR /&gt;&lt;BR /&gt;7) If your old Network printers used JetAdmin, we need to convert them to the newer JetDirect software:&lt;BR /&gt;    cd /opt/hpnpl/bin&lt;BR /&gt;    ./transferqueue local&lt;BR /&gt;when prompted, respond 'all'.&lt;BR /&gt;&lt;BR /&gt;8) lpsched&lt;BR /&gt;&lt;BR /&gt;At this point, everything, including default printer, should be "good to go".&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Feb 2004 10:50:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/printer-migration/m-p/3182813#M163209</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-02-04T10:50:23Z</dc:date>
    </item>
  </channel>
</rss>

