<?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 How to transfer SGI UNIX user on LINUX server in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-transfer-sgi-unix-user-on-linux-server/m-p/3385712#M14197</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am transfering all the data from SGI to Linux server. I also need to transfer all the 800 users from SGI to linux with same passwords. Is there any simple way to transfer them on linux (Fedora)?.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
    <pubDate>Thu, 23 Sep 2004 20:14:47 GMT</pubDate>
    <dc:creator>john D_3</dc:creator>
    <dc:date>2004-09-23T20:14:47Z</dc:date>
    <item>
      <title>How to transfer SGI UNIX user on LINUX server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-transfer-sgi-unix-user-on-linux-server/m-p/3385712#M14197</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am transfering all the data from SGI to Linux server. I also need to transfer all the 800 users from SGI to linux with same passwords. Is there any simple way to transfer them on linux (Fedora)?.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Thu, 23 Sep 2004 20:14:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-transfer-sgi-unix-user-on-linux-server/m-p/3385712#M14197</guid>
      <dc:creator>john D_3</dc:creator>
      <dc:date>2004-09-23T20:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to transfer SGI UNIX user on LINUX server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-transfer-sgi-unix-user-on-linux-server/m-p/3385713#M14198</link>
      <description>probably not.&lt;BR /&gt;&lt;BR /&gt;Fedora uses md5 encryption for passwords.&lt;BR /&gt;&lt;BR /&gt;Even if SGI uses the same method it may not work.&lt;BR /&gt;&lt;BR /&gt;Between Fedora machines and Red Hat for that matter, I transfer users by copying the relavvent sections of /etc/passwd and /etc/shadow&lt;BR /&gt;&lt;BR /&gt;then cat passwd &amp;gt;&amp;gt; /etc/passwd etc&lt;BR /&gt;&lt;BR /&gt;If that doesn't work, you may be better off with reading a copy of the passwd file from SGI and use awk to get the user name.&lt;BR /&gt;&lt;BR /&gt;Then with a script you can passwd -f the new account and set a temporary password that the users have to change at first login.&lt;BR /&gt;&lt;BR /&gt;useradd to add the user.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 23 Sep 2004 21:06:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-transfer-sgi-unix-user-on-linux-server/m-p/3385713#M14198</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-09-23T21:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to transfer SGI UNIX user on LINUX server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-transfer-sgi-unix-user-on-linux-server/m-p/3385714#M14199</link>
      <description>Thanks for your reply. &lt;BR /&gt;&lt;BR /&gt;Could someone give me an example of this kind of script? I dont know how to handle this situation in a script&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 24 Sep 2004 09:49:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-transfer-sgi-unix-user-on-linux-server/m-p/3385714#M14199</guid>
      <dc:creator>john D_3</dc:creator>
      <dc:date>2004-09-24T09:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to transfer SGI UNIX user on LINUX server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-transfer-sgi-unix-user-on-linux-server/m-p/3385715#M14200</link>
      <description>If you only have a few users on the Linux box,&lt;BR /&gt;you can change the authentication used&lt;BR /&gt;on it to that of the SGI machine.&lt;BR /&gt;&lt;BR /&gt;Use the authconfig program, and remove&lt;BR /&gt;the MD5 password and shadow password&lt;BR /&gt;option.&lt;BR /&gt;&lt;BR /&gt;You must immediately after this set&lt;BR /&gt;the password for the root account, else you&lt;BR /&gt;won't be able to log in any more! The passwords&lt;BR /&gt;for other Linux users should be set as well.&lt;BR /&gt;&lt;BR /&gt;Then you can simply append the 800 users from&lt;BR /&gt;the /etc/passwd file from the SGI machine to&lt;BR /&gt;the /etc/passwd file on the Linux box.&lt;BR /&gt;&lt;BR /&gt;However, this gives quite a low security,&lt;BR /&gt;so you should at leastreenable shadow passwords&lt;BR /&gt;after this. I'm not sure if the authconfig&lt;BR /&gt;program automatically moves the passwords&lt;BR /&gt;from the passwd file into the shadow file,&lt;BR /&gt;else you can use the pwconv program for&lt;BR /&gt;this.&lt;BR /&gt;&lt;BR /&gt;Note, you can't automatically convert&lt;BR /&gt;between md5 and not-md5 passwords.&lt;BR /&gt;&lt;BR /&gt;man authconfig&lt;BR /&gt;man pwconv&lt;BR /&gt;&lt;BR /&gt;gives more information.</description>
      <pubDate>Sat, 25 Sep 2004 05:18:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-transfer-sgi-unix-user-on-linux-server/m-p/3385715#M14200</guid>
      <dc:creator>Mogens Kjaer</dc:creator>
      <dc:date>2004-09-25T05:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to transfer SGI UNIX user on LINUX server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-transfer-sgi-unix-user-on-linux-server/m-p/3385716#M14201</link>
      <description>I think that although Fedora Linux uses MD5 passwords by default it will successfully authenticate DES (standard UNIX crypt algorithm) encrypted passwords. This means that you should be able to simply copy user info from /etc/passwd and /etc/shadow on SGI box to your Linux server without any password conversion.&lt;BR /&gt;&lt;BR /&gt;Next time users change passwords on Linux server, passwords will be encrypted using MD5 algorithm.</description>
      <pubDate>Mon, 27 Sep 2004 01:09:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-transfer-sgi-unix-user-on-linux-server/m-p/3385716#M14201</guid>
      <dc:creator>Ermin Borovac</dc:creator>
      <dc:date>2004-09-27T01:09:16Z</dc:date>
    </item>
  </channel>
</rss>

