<?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 changing group in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442971#M357555</link>
    <description>i  created a user in a group named oper, i need to change the user to group named manage,, how can i do it....</description>
    <pubDate>Fri, 19 Jun 2009 03:56:51 GMT</pubDate>
    <dc:creator>madhudeepan</dc:creator>
    <dc:date>2009-06-19T03:56:51Z</dc:date>
    <item>
      <title>changing group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442971#M357555</link>
      <description>i  created a user in a group named oper, i need to change the user to group named manage,, how can i do it....</description>
      <pubDate>Fri, 19 Jun 2009 03:56:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442971#M357555</guid>
      <dc:creator>madhudeepan</dc:creator>
      <dc:date>2009-06-19T03:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: changing group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442972#M357556</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;from the man page of `chown`&lt;BR /&gt;chown [-h] [-R] owner[:group] file&lt;BR /&gt;&lt;BR /&gt;Read the man page and you'll get a lot more info.&lt;BR /&gt;&lt;BR /&gt;Cheers!!</description>
      <pubDate>Fri, 19 Jun 2009 04:01:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442972#M357556</guid>
      <dc:creator>Nido</dc:creator>
      <dc:date>2009-06-19T04:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: changing group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442973#M357557</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;check this tutorial :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.bga.org/~lessem/psyc5112/usail/tasks/users-groups/users-groups.html" target="_blank"&gt;http://www.bga.org/~lessem/psyc5112/usail/tasks/users-groups/users-groups.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;- chapter -&amp;gt; Making changes&lt;BR /&gt;&lt;BR /&gt;see the manpages :&lt;BR /&gt;&lt;BR /&gt;man groupmod&lt;BR /&gt;&lt;BR /&gt;man usermod&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;mikap</description>
      <pubDate>Fri, 19 Jun 2009 04:10:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442973#M357557</guid>
      <dc:creator>Michal Kapalka (mikap)</dc:creator>
      <dc:date>2009-06-19T04:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: changing group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442974#M357558</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;usermod -g group1 -G group2,group3 username&lt;BR /&gt;&lt;BR /&gt;that shall add the user the group membership of group2 and group3 and primary group as group1.&lt;BR /&gt;&lt;BR /&gt;but these groups haave to exist on the system.&lt;BR /&gt;&lt;BR /&gt;see more usermod manpages for additional things.&lt;BR /&gt;regards&lt;BR /&gt;sujit</description>
      <pubDate>Fri, 19 Jun 2009 04:15:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442974#M357558</guid>
      <dc:creator>sujit kumar singh</dc:creator>
      <dc:date>2009-06-19T04:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: changing group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442975#M357559</link>
      <description>hi,&lt;BR /&gt;See the example below&lt;BR /&gt;Change a userâ  s primary and secondary group membership&lt;BR /&gt;# usermod â  g users user1&lt;BR /&gt;# usermod â  G class,training user1&lt;BR /&gt;or&lt;BR /&gt;# groupmod -n accounts accts    # change accounts to orauser if accts group not exist&lt;BR /&gt;# groupmod -g 111 -o dbuser # change group id into 111, if the grp ID 111 is already in use &lt;BR /&gt;&lt;BR /&gt;Suraj</description>
      <pubDate>Fri, 19 Jun 2009 04:28:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442975#M357559</guid>
      <dc:creator>Suraj K Sankari</dc:creator>
      <dc:date>2009-06-19T04:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: changing group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442976#M357560</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;To change the group of a user run:&lt;BR /&gt;usermod -g &lt;GID&gt; &lt;USERNAME&gt;&lt;BR /&gt;&lt;BR /&gt;To add user in different groups run:&lt;BR /&gt;usermod -G &lt;GID1&gt; &lt;USERNAME&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Tarun&lt;/USERNAME&gt;&lt;/GID1&gt;&lt;/USERNAME&gt;&lt;/GID&gt;</description>
      <pubDate>Fri, 19 Jun 2009 04:48:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442976#M357560</guid>
      <dc:creator>Tarun Kumra</dc:creator>
      <dc:date>2009-06-19T04:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: changing group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442977#M357561</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;#usermod -g manage &lt;USERNAME&gt;&lt;/USERNAME&gt;</description>
      <pubDate>Fri, 19 Jun 2009 06:34:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-group/m-p/4442977#M357561</guid>
      <dc:creator>Ganesan R</dc:creator>
      <dc:date>2009-06-19T06:34:07Z</dc:date>
    </item>
  </channel>
</rss>

