<?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: Authentication token manipulation error .. when creating user manually in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/authentication-token-manipulation-error-when-creating-user/m-p/3392075#M14247</link>
    <description>Many Thanks SEP, and Alexander.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
    <pubDate>Sun, 03 Oct 2004 12:26:22 GMT</pubDate>
    <dc:creator>Maaz</dc:creator>
    <dc:date>2004-10-03T12:26:22Z</dc:date>
    <item>
      <title>Authentication token manipulation error .. when creating user manually</title>
      <link>https://community.hpe.com/t5/operating-system-linux/authentication-token-manipulation-error-when-creating-user/m-p/3392072#M14244</link>
      <description>OS = rhl 9&lt;BR /&gt;I tried to create users manually&lt;BR /&gt;I did the following&lt;BR /&gt;&lt;BR /&gt;1. vi /etc/passwd and add a line&lt;BR /&gt;maaz:x:625:625::/home/maaz:/bin/bash&lt;BR /&gt;&lt;BR /&gt;2. vi /etc/group and add a line&lt;BR /&gt;maaz:x:625:&lt;BR /&gt;&lt;BR /&gt;3. mkdir /home/maaz&lt;BR /&gt;&lt;BR /&gt;4. chown maaz.maaz /home/maaz&lt;BR /&gt;&lt;BR /&gt;5. then copy /etc/skel/* to the /home/maaz&lt;BR /&gt;&lt;BR /&gt;but when I type&lt;BR /&gt;&lt;BR /&gt;6. passwd maaz&lt;BR /&gt;&lt;BR /&gt;[root@linux101 root]# passwd maaz&lt;BR /&gt;Changing password for user maaz.&lt;BR /&gt;passwd: Authentication token manipulation error&lt;BR /&gt;&lt;BR /&gt;Any1 any ideaz&lt;BR /&gt;&lt;BR /&gt;Thanks in anticipation&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Sat, 02 Oct 2004 13:41:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/authentication-token-manipulation-error-when-creating-user/m-p/3392072#M14244</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2004-10-02T13:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Authentication token manipulation error .. when creating user manually</title>
      <link>https://community.hpe.com/t5/operating-system-linux/authentication-token-manipulation-error-when-creating-user/m-p/3392073#M14245</link>
      <description>Thats now how you are supposed to add users.&lt;BR /&gt;&lt;BR /&gt;There are three files that are updated when a user is added with the useradd command.&lt;BR /&gt;&lt;BR /&gt;/etc/passwd # user list&lt;BR /&gt;/etc/group  # a group is added&lt;BR /&gt;/etc/shadow # encrypted password file.&lt;BR /&gt;&lt;BR /&gt;useradd helps with this. I've done it the manual way. So long as you do all 3 files and don't have a conflict in the numeric id numbers it can be done.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Sat, 02 Oct 2004 23:52:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/authentication-token-manipulation-error-when-creating-user/m-p/3392073#M14245</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-10-02T23:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Authentication token manipulation error .. when creating user manually</title>
      <link>https://community.hpe.com/t5/operating-system-linux/authentication-token-manipulation-error-when-creating-user/m-p/3392074#M14246</link>
      <description>Hi,&lt;BR /&gt;you can use the authconfig utility to unselect the "shadow passwords" option and then you won't have to edit the /etc/shadow file when adding users,otherwise Steve's way is necessary.</description>
      <pubDate>Sun, 03 Oct 2004 01:04:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/authentication-token-manipulation-error-when-creating-user/m-p/3392074#M14246</guid>
      <dc:creator>Alexander Chuzhoy</dc:creator>
      <dc:date>2004-10-03T01:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Authentication token manipulation error .. when creating user manually</title>
      <link>https://community.hpe.com/t5/operating-system-linux/authentication-token-manipulation-error-when-creating-user/m-p/3392075#M14247</link>
      <description>Many Thanks SEP, and Alexander.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Sun, 03 Oct 2004 12:26:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/authentication-token-manipulation-error-when-creating-user/m-p/3392075#M14247</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2004-10-03T12:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Authentication token manipulation error .. when creating user manually</title>
      <link>https://community.hpe.com/t5/operating-system-linux/authentication-token-manipulation-error-when-creating-user/m-p/3392076#M14248</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;U can edit the passwd file &lt;BR /&gt;vi /etc/passwd and add the user id&lt;BR /&gt;&lt;BR /&gt;then edit group file &lt;BR /&gt;vi /etc/group and append the user to a group or create a new group&lt;BR /&gt;&lt;BR /&gt;do a pwconv&lt;BR /&gt;then do a passwd &lt;NEW_USERID&gt;&lt;BR /&gt;&lt;BR /&gt;it should come back and say all token syncrinised sucessfully.&lt;BR /&gt;Dont forget to create the home directory with the required permission with ownership and group privelege&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;&lt;BR /&gt;Gopi&lt;BR /&gt;&lt;/NEW_USERID&gt;</description>
      <pubDate>Mon, 04 Oct 2004 12:55:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/authentication-token-manipulation-error-when-creating-user/m-p/3392076#M14248</guid>
      <dc:creator>HGN</dc:creator>
      <dc:date>2004-10-04T12:55:43Z</dc:date>
    </item>
  </channel>
</rss>

