<?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: /etc/group in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/etc-group/m-p/4216138#M326832</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;As told, there is no default group called guest in HP-UX. If this group exists in your system, before you remove it, what you have to do is to search all the files belong to that group&lt;BR /&gt;&lt;BR /&gt;find / -group guest -exec ll {} +&lt;BR /&gt;&lt;BR /&gt;The above command will list all the files belong to the guest group, if exist&lt;BR /&gt;&lt;BR /&gt;then&lt;BR /&gt;&lt;BR /&gt;grep guest /etc/group&lt;BR /&gt;(you will get the numerical group ID)&lt;BR /&gt;i.e, if the groupd id is 106, just grep the passwd file to see who are the users belong to this particular group&lt;BR /&gt;&lt;BR /&gt;awk -F: ' $4 == 106 {print }' /etc/passwd&lt;BR /&gt;&lt;BR /&gt;Based on the results, you can decide what to do - remove the group or keep it.</description>
    <pubDate>Sat, 14 Jun 2008 11:53:25 GMT</pubDate>
    <dc:creator>Rasheed Tamton</dc:creator>
    <dc:date>2008-06-14T11:53:25Z</dc:date>
    <item>
      <title>/etc/group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/etc-group/m-p/4216133#M326827</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;In /etc/group, there is a group ID named "guest", what is it for? Can I delete this group ID? Does it have any impact to the system if I deleted this group ID?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Jun 2008 06:27:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/etc-group/m-p/4216133#M326827</guid>
      <dc:creator>EY</dc:creator>
      <dc:date>2008-06-13T06:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: /etc/group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/etc-group/m-p/4216134#M326828</link>
      <description>Check which users belong to that group. &lt;BR /&gt;Check also for files with group ownership guest.&lt;BR /&gt;&lt;BR /&gt;Bu default there is no such group in HP-UX.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;ivan</description>
      <pubDate>Fri, 13 Jun 2008 06:47:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/etc-group/m-p/4216134#M326828</guid>
      <dc:creator>Ivan Krastev</dc:creator>
      <dc:date>2008-06-13T06:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: /etc/group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/etc-group/m-p/4216135#M326829</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;The answer is, it depends.&lt;BR /&gt;&lt;BR /&gt;If you delete the group and its in use you may cause problems.&lt;BR /&gt;&lt;BR /&gt;What it depends on is how the group is used.&lt;BR /&gt;&lt;BR /&gt;This group name is itself a red flag and guest users should be discouraged. You need to find out how the user is used and then do a complete delete once you understand the implications, the group id, the users in /etc/passwd, all things associated.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 13 Jun 2008 06:49:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/etc-group/m-p/4216135#M326829</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2008-06-13T06:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: /etc/group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/etc-group/m-p/4216136#M326830</link>
      <description>To find Ivan's files with that group you can do:&lt;BR /&gt;find / -group gname&lt;BR /&gt;&lt;BR /&gt;To find those users:&lt;BR /&gt;awk -F: -v grp=$(awk -F: '/guest/ {print $3}' /etc/group) \&lt;BR /&gt;'$4 == grp {print}' /etc/passwd</description>
      <pubDate>Fri, 13 Jun 2008 07:19:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/etc-group/m-p/4216136#M326830</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-06-13T07:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: /etc/group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/etc-group/m-p/4216137#M326831</link>
      <description>Find out the group id for guest group from /etc/group file and grep for this group id in the /etc/passwd file. If there is no users then you can delete this group as this is not the default group. If there are any users who belongs to this group find out purpose of those users and act accordingly.</description>
      <pubDate>Fri, 13 Jun 2008 07:23:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/etc-group/m-p/4216137#M326831</guid>
      <dc:creator>Vinoyee Madashery Poulo</dc:creator>
      <dc:date>2008-06-13T07:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: /etc/group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/etc-group/m-p/4216138#M326832</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;As told, there is no default group called guest in HP-UX. If this group exists in your system, before you remove it, what you have to do is to search all the files belong to that group&lt;BR /&gt;&lt;BR /&gt;find / -group guest -exec ll {} +&lt;BR /&gt;&lt;BR /&gt;The above command will list all the files belong to the guest group, if exist&lt;BR /&gt;&lt;BR /&gt;then&lt;BR /&gt;&lt;BR /&gt;grep guest /etc/group&lt;BR /&gt;(you will get the numerical group ID)&lt;BR /&gt;i.e, if the groupd id is 106, just grep the passwd file to see who are the users belong to this particular group&lt;BR /&gt;&lt;BR /&gt;awk -F: ' $4 == 106 {print }' /etc/passwd&lt;BR /&gt;&lt;BR /&gt;Based on the results, you can decide what to do - remove the group or keep it.</description>
      <pubDate>Sat, 14 Jun 2008 11:53:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/etc-group/m-p/4216138#M326832</guid>
      <dc:creator>Rasheed Tamton</dc:creator>
      <dc:date>2008-06-14T11:53:25Z</dc:date>
    </item>
  </channel>
</rss>

