<?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 Migrate Users in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/migrate-users/m-p/2978846#M121783</link>
    <description>Hello &lt;BR /&gt;I installed a 'new' Hp9000 D270 &lt;BR /&gt;and i want to migrate the users and prnters from another HP9000 to these,&lt;BR /&gt;its posiible ?? how ?&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
    <pubDate>Wed, 21 May 2003 15:11:09 GMT</pubDate>
    <dc:creator>enrique Ortiz</dc:creator>
    <dc:date>2003-05-21T15:11:09Z</dc:date>
    <item>
      <title>Migrate Users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/migrate-users/m-p/2978846#M121783</link>
      <description>Hello &lt;BR /&gt;I installed a 'new' Hp9000 D270 &lt;BR /&gt;and i want to migrate the users and prnters from another HP9000 to these,&lt;BR /&gt;its posiible ?? how ?&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Wed, 21 May 2003 15:11:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/migrate-users/m-p/2978846#M121783</guid>
      <dc:creator>enrique Ortiz</dc:creator>
      <dc:date>2003-05-21T15:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Migrate Users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/migrate-users/m-p/2978847#M121784</link>
      <description>If are careful to avoid conflicts with uid and group id, you can copy the /etc/passwd file over(not trusted) and cat the new entries onto the end of the /etc/passwd file&lt;BR /&gt;&lt;BR /&gt;cat /root/passwd &amp;gt;&amp;gt; /etc/passwd&lt;BR /&gt;&lt;BR /&gt;Same thing for group.&lt;BR /&gt;&lt;BR /&gt;After you are done run these two checks.&lt;BR /&gt;&lt;BR /&gt;pwck&lt;BR /&gt;grpck&lt;BR /&gt;&lt;BR /&gt;You will probably want to tar up the home directories and move them too, with special attention to the contents of .profile&lt;BR /&gt;&lt;BR /&gt;You'll need to think a bit.&lt;BR /&gt;&lt;BR /&gt;No idea with regards to printers.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 21 May 2003 15:13:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/migrate-users/m-p/2978847#M121784</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-05-21T15:13:51Z</dc:date>
    </item>
    <item>
      <title>Re: Migrate Users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/migrate-users/m-p/2978848#M121785</link>
      <description>Sure - if you're not trusted, copy /etc/passwd from the old host to the new host; write a script to make all of the home directories; copy all of the content from oldhost/home to newhost/home.&lt;BR /&gt;&lt;BR /&gt;If you're trusted, you need to copy over /tcb as well.&lt;BR /&gt;&lt;BR /&gt;Generally, when I do this, I don't migrate data; I write a program to extract all of the /etc/passwd info [and password stuff out of tcb], then I write a useradd script to add the users "from scratch".</description>
      <pubDate>Wed, 21 May 2003 15:14:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/migrate-users/m-p/2978848#M121785</guid>
      <dc:creator>Christopher Caldwell</dc:creator>
      <dc:date>2003-05-21T15:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Migrate Users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/migrate-users/m-p/2978849#M121786</link>
      <description>&lt;BR /&gt;Migrating printers is easy. There is an option in SAM under printers to save your entire printer setup to a file, then copy it to the new server, then use SAM to recreate your printer setup.&lt;BR /&gt;&lt;BR /&gt;Migrating users involves a bit more;&lt;BR /&gt;1. copying their entire home directories from one server to the new server.&lt;BR /&gt;2. copying users /etc/passwd entries and /etc/group entries to the /etc/passwd and /etc/group files on the new server, although its probably better to use the useradd command to create the new accounts on the new server - just create them the same as on the old server.&lt;BR /&gt;</description>
      <pubDate>Wed, 21 May 2003 15:15:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/migrate-users/m-p/2978849#M121786</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2003-05-21T15:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: Migrate Users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/migrate-users/m-p/2978850#M121787</link>
      <description>If you are trusted, convert to untrusted using the tsconvert command. You can then simply copy the passwd and group files to the new box. Copy using tar or cpio /home to the new box.&lt;BR /&gt;&lt;BR /&gt;Printers:&lt;BR /&gt;&lt;BR /&gt;1) On the old box:&lt;BR /&gt;   lpstat -t&lt;BR /&gt;Look for and cancel any really old unwanted print jobs. No point in taking them across. &lt;BR /&gt;&lt;BR /&gt;   lpshut&lt;BR /&gt;&lt;BR /&gt;2) cd /&lt;BR /&gt;   find ./var/spool/lp ./etc/lp -print | cpio -ocv &amp;gt; /tmp/lp.cpio&lt;BR /&gt;&lt;BR /&gt;3) On the new box, install the new JetDirect software using swinstall - don't install JetAdmin; it is obsolete.&lt;BR /&gt;&lt;BR /&gt;4) lpshut (if lpsched is running)&lt;BR /&gt;&lt;BR /&gt;   copy your /tmp/lp.cpio to the new box&lt;BR /&gt;&lt;BR /&gt;   cd /&lt;BR /&gt;   cpio -icvdum &amp;lt; /tmp/cpio&lt;BR /&gt;&lt;BR /&gt;5) If your old box was running JetAdmin, execute transferqueue local and respond "all". This will update your interface files.&lt;BR /&gt;&lt;BR /&gt;6) Make sure that /etc/hosts, DNS, NIS(+) is setup so that host names are resolved as they were on the old box.&lt;BR /&gt;&lt;BR /&gt;7) lpsched&lt;BR /&gt;&lt;BR /&gt;Everything should now be setup including your old default printer.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 21 May 2003 15:21:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/migrate-users/m-p/2978850#M121787</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2003-05-21T15:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Migrate Users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/migrate-users/m-p/2978851#M121788</link>
      <description>I should add if your old system was trusted, after transferring the passwd and group files to the new box, run tsconvert again to convert to trusted.&lt;BR /&gt;</description>
      <pubDate>Wed, 21 May 2003 15:23:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/migrate-users/m-p/2978851#M121788</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2003-05-21T15:23:10Z</dc:date>
    </item>
  </channel>
</rss>

