<?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: Convert Solaris passwords to HP-UX in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016447#M427520</link>
    <description>Hi Mike--&lt;BR /&gt;&lt;BR /&gt;The Sun Solaris version is an old 5.6! &lt;BR /&gt;Upgrading the Sun system is not an option. &lt;BR /&gt;&lt;BR /&gt;But you do bring up a point. The HP system is new (no users yet) So that brings up what I was looking at earlier --changing the authentication hashing routine via pam.&lt;BR /&gt;&lt;BR /&gt;The /etc/pam.conf points to libpam_unix.1&lt;BR /&gt;&lt;BR /&gt;# Authentication Management                                                     &lt;BR /&gt;#                                                                               &lt;BR /&gt;dtaction  auth  required  /usr/lib/security/libpam_unix.1                       &lt;BR /&gt;dtlogin  auth  required  /usr/lib/security/libpam_unix.1                        &lt;BR /&gt;ftp  auth  required  /usr/lib/security/libpam_unix.1                            &lt;BR /&gt;login  auth  required  /usr/lib/security/libpam_unix.1                          &lt;BR /&gt;su  auth  required  /usr/lib/security/libpam_unix.1                             &lt;BR /&gt;OTHER  auth  required  /usr/lib/security/libpam_unix.1  &lt;BR /&gt;&lt;BR /&gt;Under the /usr/lib/security there are these files:&lt;BR /&gt;&lt;BR /&gt;libpam_authz.1  libpam_krb5.1   libpam_ntlm.1   libpam_updbe.1                  &lt;BR /&gt;libpam_dce.1    libpam_ldap.1   libpam_unix.1&lt;BR /&gt;&lt;BR /&gt;I am wondering if unix.1 is MD5 and dce.1 is DES??&lt;BR /&gt;&lt;BR /&gt;Darren---that was the first thing I tried..&lt;BR /&gt;&lt;BR /&gt;Thanks for the replies so far!!&lt;BR /&gt;</description>
    <pubDate>Fri, 01 Dec 2006 10:29:17 GMT</pubDate>
    <dc:creator>Bob_165</dc:creator>
    <dc:date>2006-12-01T10:29:17Z</dc:date>
    <item>
      <title>Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016442#M427515</link>
      <description>I'm trying to migrate from a Solaris system to HP-UX. &lt;BR /&gt;My simple try at this was to create a user on the HP box then cut and paste the SUN's /etc/shadow password into the new users /etc/passwd file on the HP. I didn't work.&lt;BR /&gt;So I beleive Solaris keeps their hashed passwd in a different format then that of HP-UX. I've googled arround and I beleieve that SUN uses DES hashing and HP-UX uses MD5.&lt;BR /&gt;Is there a way to convert these passwords?&lt;BR /&gt;I've looked through pam and couldn't find anything.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for any help!</description>
      <pubDate>Thu, 30 Nov 2006 17:03:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016442#M427515</guid>
      <dc:creator>Bob_165</dc:creator>
      <dc:date>2006-11-30T17:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016443#M427516</link>
      <description>I rather doubt that that is your problem although since you haven't bother to identify your HP-UX version or the security setting, it's difficult to know. HP-UX doesn't normally use shadowed passwords per se but rather a Trusted Database. It also commonly uses the traditional /etc/passwd file and this is referred to as "untrusted" mode. Look to see if you have a filetree under /tcb. For example, the password hash for user mmouse is stored under /tcb/files/auth/m/mmouse along with other attributes such as time of last login.&lt;BR /&gt;&lt;BR /&gt;The other gotcha is that HP-UX uses an optional bigcrypt() function to encode passwords whose plaintext exceed 8 characters. This behavior can be changed use PAM modules but it's a non-trivial exercise.&lt;BR /&gt;</description>
      <pubDate>Thu, 30 Nov 2006 19:53:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016443#M427516</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-11-30T19:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016444#M427517</link>
      <description>Thanks for the reply.&lt;BR /&gt;&lt;BR /&gt;The HP system is not trusted.&lt;BR /&gt;&lt;BR /&gt;I am migrating from Solaris to HP-UX. The Solaris keeps the password in the /etc/shadow file for example:&lt;BR /&gt;jgarza:gXU9S9EyMLFvg:13102::::::&lt;BR /&gt;&lt;BR /&gt;BTY: This password is caddy670 on the Solaris.&lt;BR /&gt;&lt;BR /&gt;The Solaris /etc/passwd file for the same user is:&lt;BR /&gt;jgarza:x:1089:15:Johnny Garza:/usr/users/jgarza:/bin/csh&lt;BR /&gt;&lt;BR /&gt;Forgetting the /home dir and the shell info. I am simply trying to move the passwords. The rest I can modify via a vi replace.&lt;BR /&gt;&lt;BR /&gt;The question is; how to I get the Solaris hashed password to be recognized by HP-UX?&lt;BR /&gt;&lt;BR /&gt;I have even tried to install the HP shadow patch thinking that it may do something to the hashing (encryption).No dice.&lt;BR /&gt;&lt;BR /&gt;I have searched and searched; it is hard to believe no one has migrated from a Solaris to and HP without resetting all the passwords. In my case it is over 200.&lt;BR /&gt;&lt;BR /&gt;I have migrated from SCO to HP; and True64 to HP all with no problems.&lt;BR /&gt;&lt;BR /&gt;This forum has always had the answers. I use it all the time. I have searched and can not find anything even close. Google has nothing either.&lt;BR /&gt;&lt;BR /&gt;I keep thinking that SUN is using a different hashing method???&lt;BR /&gt;&lt;BR /&gt;HELP!!&lt;BR /&gt;</description>
      <pubDate>Thu, 30 Nov 2006 23:31:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016444#M427517</guid>
      <dc:creator>Bob_165</dc:creator>
      <dc:date>2006-11-30T23:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016445#M427518</link>
      <description>hello, &lt;BR /&gt;        does this help ? you do not say what the solaris release is  . it might be easier to fix them at the solaris end .&lt;BR /&gt; &lt;BR /&gt;&lt;A href="http://learningsolaris.com/archives/2006/01/19/password-hashing-algorithm/" target="_blank"&gt;http://learningsolaris.com/archives/2006/01/19/password-hashing-algorithm/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.sun.com/software/whitepapers/solaris9/pam.pdf" target="_blank"&gt;http://www.sun.com/software/whitepapers/solaris9/pam.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;you would probably have to do a full install of solaris 9 2 to get there . Change the encryption algorithim. Then get everybody to change their password.  Then copy the files across.  &lt;BR /&gt;good luck  &lt;BR /&gt;Mike . &lt;BR /&gt;</description>
      <pubDate>Fri, 01 Dec 2006 03:52:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016445#M427518</guid>
      <dc:creator>BUPA IS</dc:creator>
      <dc:date>2006-12-01T03:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016446#M427519</link>
      <description>Hi Bob,&lt;BR /&gt;&lt;BR /&gt;If you have an untrusted HP-UX system and shadow passwords on the Solaris system then you will need to move the encrypted passwords  into the /etc/passwd file.  In your example:&lt;BR /&gt;&lt;BR /&gt;/etc/shadow file:&lt;BR /&gt;jgarza:gXU9S9EyMLFvg:13102::::::&lt;BR /&gt;&lt;BR /&gt;/etc/passwd file:&lt;BR /&gt;&lt;BR /&gt;jgarza:x:1089:15:Johnny Garza:/usr/users/jgarza:/bin/csh&lt;BR /&gt;&lt;BR /&gt;This will need to become the following /etc/passwd entry:&lt;BR /&gt;&lt;BR /&gt;jgarza:gXU9S9EyMLFvg:1089:15:Johnny Garza:/usr/users/jgarza:/bin/csh&lt;BR /&gt;&lt;BR /&gt;However, if appears that your uids do not match - this may or may not be a concern to you.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;Darren.</description>
      <pubDate>Fri, 01 Dec 2006 05:00:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016446#M427519</guid>
      <dc:creator>Darren Prior</dc:creator>
      <dc:date>2006-12-01T05:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016447#M427520</link>
      <description>Hi Mike--&lt;BR /&gt;&lt;BR /&gt;The Sun Solaris version is an old 5.6! &lt;BR /&gt;Upgrading the Sun system is not an option. &lt;BR /&gt;&lt;BR /&gt;But you do bring up a point. The HP system is new (no users yet) So that brings up what I was looking at earlier --changing the authentication hashing routine via pam.&lt;BR /&gt;&lt;BR /&gt;The /etc/pam.conf points to libpam_unix.1&lt;BR /&gt;&lt;BR /&gt;# Authentication Management                                                     &lt;BR /&gt;#                                                                               &lt;BR /&gt;dtaction  auth  required  /usr/lib/security/libpam_unix.1                       &lt;BR /&gt;dtlogin  auth  required  /usr/lib/security/libpam_unix.1                        &lt;BR /&gt;ftp  auth  required  /usr/lib/security/libpam_unix.1                            &lt;BR /&gt;login  auth  required  /usr/lib/security/libpam_unix.1                          &lt;BR /&gt;su  auth  required  /usr/lib/security/libpam_unix.1                             &lt;BR /&gt;OTHER  auth  required  /usr/lib/security/libpam_unix.1  &lt;BR /&gt;&lt;BR /&gt;Under the /usr/lib/security there are these files:&lt;BR /&gt;&lt;BR /&gt;libpam_authz.1  libpam_krb5.1   libpam_ntlm.1   libpam_updbe.1                  &lt;BR /&gt;libpam_dce.1    libpam_ldap.1   libpam_unix.1&lt;BR /&gt;&lt;BR /&gt;I am wondering if unix.1 is MD5 and dce.1 is DES??&lt;BR /&gt;&lt;BR /&gt;Darren---that was the first thing I tried..&lt;BR /&gt;&lt;BR /&gt;Thanks for the replies so far!!&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Dec 2006 10:29:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016447#M427520</guid>
      <dc:creator>Bob_165</dc:creator>
      <dc:date>2006-12-01T10:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016448#M427521</link>
      <description>Well---I tried changing the one line in pam.conf:&lt;BR /&gt;&lt;BR /&gt;login  auth  required  /usr/lib/security/libpam_unix.1&lt;BR /&gt;&lt;BR /&gt;To each one of these:&lt;BR /&gt;libpam_authz.1  libpam_krb5.1   libpam_ntlm.1   libpam_updbe.1                  &lt;BR /&gt;libpam_dce.1    libpam_ldap.1&lt;BR /&gt;&lt;BR /&gt;No luck---I knew ldap.1 would not work.&lt;BR /&gt;Some actually let you in without a password.&lt;BR /&gt;I did try the HP-UX shadow patch. That did not change the hashing. &lt;BR /&gt;So I'm still stuck.</description>
      <pubDate>Fri, 01 Dec 2006 11:18:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016448#M427521</guid>
      <dc:creator>Bob_165</dc:creator>
      <dc:date>2006-12-01T11:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016449#M427522</link>
      <description>Try this on both your Solaris box and your HP-UX box for a single known user. If you haven't created a user on the HP-UX end, do so now (or you can simply use root):&lt;BR /&gt;&lt;BR /&gt;Examine the password hash and note the 1st 2 characters (the "salt"). Next run this Perl one-liner:&lt;BR /&gt;&lt;BR /&gt;perl -e 'print crypt("secret","Eb"),"\n";'&lt;BR /&gt;&lt;BR /&gt;where "secret" is the plaintext password and "Eb" is the salt mentioned above. The output will be the password hash. When these two match on box boxes, you have equivalent password hashing.&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Dec 2006 11:53:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016449#M427522</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-12-01T11:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016450#M427523</link>
      <description>Is Solaris using crypt for shadow passwords though?  HP-UX uses bigcrypt for trusted systems, so those encrypted passwords would be no use on a non-trusted system.  In the same way, if Solaris is not using crypt then you'll not be able to use the same encrypted passwords.&lt;BR /&gt;&lt;BR /&gt;Looking at this from another angle, why don't you make people enter new passwords?  It's generally considered good security to change passwords on a regular basis.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;Darren.</description>
      <pubDate>Fri, 01 Dec 2006 12:02:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016450#M427523</guid>
      <dc:creator>Darren Prior</dc:creator>
      <dc:date>2006-12-01T12:02:25Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016451#M427524</link>
      <description>Clay,&lt;BR /&gt;&lt;BR /&gt;That's a good test except they do not have perl on the Solaris system.&lt;BR /&gt;&lt;BR /&gt;I pretty sure that will tell me what I already know..the hashing is different between a Solaris 5.6 and HP-UX.&lt;BR /&gt;I was hoping there is something I could change on HP-UX to translate the Solaris hashed password. I had hoped it was in the pam.conf. It may still be. I have got to do some more research on those pam lib files&lt;BR /&gt;&lt;BR /&gt;Daren,&lt;BR /&gt;&lt;BR /&gt;I doubt they are running anything but striaght Solaris 5.6, with no extra crypting.&lt;BR /&gt;&lt;BR /&gt;On the HP side I've tried untrusted..but not trusted. I'll try that this afternoon and stick the password from the Solaris /etc/shadow into the approprate HP-UX /tcb/auth file.&lt;BR /&gt;&lt;BR /&gt;While I agree it's a good practice to change the passwords every 90 days or so. It is just not the best time to do this when you are going live on a new system.</description>
      <pubDate>Fri, 01 Dec 2006 12:54:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016451#M427524</guid>
      <dc:creator>Bob_165</dc:creator>
      <dc:date>2006-12-01T12:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016452#M427525</link>
      <description>&lt;!--!*#--&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;the idead of merging the shadow passwd-data into /etc/passwd will work.&lt;BR /&gt;Use these lines on your solaris box to create a 'HP-UXable' /etc/passwd:&lt;BR /&gt;&lt;BR /&gt;nawk -F: 'BEGIN { while (getline&amp;lt;"/etc/shadow" == 1) pw[$1]=$2; close("/etc/shadow");OFS=FS}&lt;BR /&gt;{if (!pw[$1]) pw[$1]="*NONE*";print $1,pw[$1],$3,$4,$5,$6,$7}' /etc/passwd&lt;BR /&gt;&lt;BR /&gt;You'll better remove system accounts from this output and append it to your /etc/passwd on the HP-UX box.&lt;BR /&gt;&lt;BR /&gt;Password aging is lost, though you could use the data in /etc/shadow to compute an equivalent aging string for /etc/passwd.&lt;BR /&gt;You better set in up for new, if you require  this.&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Fri, 01 Dec 2006 13:02:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016452#M427525</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-12-01T13:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016453#M427526</link>
      <description>You could always try converting your HP-UX to shadow passwords.&lt;BR /&gt;&lt;BR /&gt;There is some info in:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://devrsrc1.external.hp.com/STK/impacts/i833.html" target="_blank"&gt;http://devrsrc1.external.hp.com/STK/impacts/i833.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;As well as download here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=ShadowPassword" target="_blank"&gt;http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=ShadowPassword&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Fri, 01 Dec 2006 15:31:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016453#M427526</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-12-01T15:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016454#M427527</link>
      <description>Peter,&lt;BR /&gt;&lt;BR /&gt;It looks as though this moves the data from shadow and combines it into passwd (standard).&lt;BR /&gt;Unless I'm missing something the problem is in the hashing. Of course I can't be certain since I could not run the perl script on the SUN box.&lt;BR /&gt;&lt;BR /&gt;Geoff,&lt;BR /&gt;&lt;BR /&gt;Tried the shadow patch yesterday. I really thought I was on to something, but no.&lt;BR /&gt;&lt;BR /&gt;I wonder if should close this thread and start a new one that has to do with the hashing problem?</description>
      <pubDate>Fri, 01 Dec 2006 17:09:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016454#M427527</guid>
      <dc:creator>Bob_165</dc:creator>
      <dc:date>2006-12-01T17:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016455#M427528</link>
      <description>I have a call into HP on this - as I am interested as well.&lt;BR /&gt;&lt;BR /&gt;There was a presentation at this year's HP Tech Forum on "Sun Porting &amp;amp; Migration to HP".&lt;BR /&gt;&lt;BR /&gt;I'll let you know the results as soon as they get back to me.&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Fri, 01 Dec 2006 17:25:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016455#M427528</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-12-01T17:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016456#M427529</link>
      <description>OK-&lt;BR /&gt;&lt;BR /&gt;Here's what I have found out so far.&lt;BR /&gt;&lt;BR /&gt;On the SUN box I changed the passwd of the same user I've been battling since yesterday morning to the same password he had before.&lt;BR /&gt;I cut and pasted it and it worked on HP!!&lt;BR /&gt;&lt;BR /&gt;I then cut and pasted the root passwd from the SUN box to this same user on the HP and it worked!&lt;BR /&gt;&lt;BR /&gt;Strange since the orginal password did work on the SUN.&lt;BR /&gt;&lt;BR /&gt;I am thinking they are useing the Solaris GUI admintool it may give an option to encrypt the password into something unknown.&lt;BR /&gt;&lt;BR /&gt;I'm going to close this thread--&lt;BR /&gt;This is my first post and I feel stupid that I didn't try this before!&lt;BR /&gt;&lt;BR /&gt;Thanks for everyones help on this! And thank this forum..I've used this for years and I always find the answers!!&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Dec 2006 18:35:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016456#M427529</guid>
      <dc:creator>Bob_165</dc:creator>
      <dc:date>2006-12-01T18:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Solaris passwords to HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016457#M427530</link>
      <description>see above</description>
      <pubDate>Fri, 01 Dec 2006 18:36:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/convert-solaris-passwords-to-hp-ux/m-p/5016457#M427530</guid>
      <dc:creator>Bob_165</dc:creator>
      <dc:date>2006-12-01T18:36:09Z</dc:date>
    </item>
  </channel>
</rss>

