<?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: Inherit group from parent directory in Operating System - Tru64 Unix</title>
    <link>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296550#M10141</link>
    <description>Hi steven,&lt;BR /&gt;&lt;BR /&gt;if you do not have too MANY groups, how about create file set for each group under wrk_domain, then it's easy to tell how much space is used for each file set.&lt;BR /&gt;&lt;BR /&gt;just a idea. also you can set limit too.&lt;BR /&gt;&lt;BR /&gt;Cheers !&lt;BR /&gt;&lt;BR /&gt;YJ</description>
    <pubDate>Mon, 07 Jun 2004 16:01:03 GMT</pubDate>
    <dc:creator>Yong_7</dc:creator>
    <dc:date>2004-06-07T16:01:03Z</dc:date>
    <item>
      <title>Inherit group from parent directory</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296543#M10134</link>
      <description>We have a scratch disk called /wrk on a Tru64 5.1B system formatted as advfs v4 that is group and world writable:&lt;BR /&gt;&lt;BR /&gt;drwsrwxrwx 954 root     system     40960 Jun  4 13:26 /wrk&lt;BR /&gt;&lt;BR /&gt;If a user creates a file or directory directly under /wrk, its owner (UID) is the user's uid but the group name (gid) is still system:&lt;BR /&gt;&lt;BR /&gt;-rw-------   1 me       system         0 Jun  4 13:27 test.txt&lt;BR /&gt;&lt;BR /&gt;How do I set up the permissions on /wrk so that my group name is used instead of system?  &lt;BR /&gt;&lt;BR /&gt;-rw-------   1 me       grp1           0 Jun  4 13:27 test.txt&lt;BR /&gt;&lt;BR /&gt;The reason I ask is because our users archive their files onto a storage array.  We use the group name to determine how much space each group is using.  As it is now, if a user copies his/uer files to the storage array the group name is still system.&lt;BR /&gt;&lt;BR /&gt;I know we can tell the users to do a chgrp on new  directories under /wrk but we would have to constantly police the users to make sure the policy is followed.  There must be an easier way.&lt;BR /&gt;&lt;BR /&gt;Any info will be appreciated.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Steven</description>
      <pubDate>Fri, 04 Jun 2004 13:52:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296543#M10134</guid>
      <dc:creator>Steven Whatley</dc:creator>
      <dc:date>2004-06-04T13:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: Inherit group from parent directory</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296544#M10135</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;there is one problem. You have only one group, you set /wrk to but probably many groups, the users belong to.&lt;BR /&gt;You might try this from time to time.&lt;BR /&gt;find /wrk -user "userx" -exec chgrp grp1 "{}" ";"&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;&lt;BR /&gt;Michael&lt;BR /&gt;</description>
      <pubDate>Fri, 04 Jun 2004 15:45:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296544#M10135</guid>
      <dc:creator>Michael Schulte zur Sur</dc:creator>
      <dc:date>2004-06-04T15:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Inherit group from parent directory</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296545#M10136</link>
      <description>Miachae's solution is one way of getting around the problem.&lt;BR /&gt;But here is another solution, if /wrk is a filesystem, mount it with "nogrpid" option.&lt;BR /&gt;&lt;BR /&gt;eg:&lt;BR /&gt;# mount -o nogrpid /wrk&lt;BR /&gt;&lt;BR /&gt;man mount for more info.</description>
      <pubDate>Fri, 04 Jun 2004 15:53:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296545#M10136</guid>
      <dc:creator>Abdul Rahiman</dc:creator>
      <dc:date>2004-06-04T15:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: Inherit group from parent directory</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296546#M10137</link>
      <description>nogrpid has no effect on non nfs filesystems as I know....&lt;BR /&gt;&lt;BR /&gt;But why not learn some basics and use vfs: sys_v_mode=1 (have a look into the admin guide, section BDS vs. SYSV behavior) or still use ACL's to solve your problem.&lt;BR /&gt;</description>
      <pubDate>Fri, 04 Jun 2004 16:25:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296546#M10137</guid>
      <dc:creator>Ralf Puchner</dc:creator>
      <dc:date>2004-06-04T16:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Inherit group from parent directory</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296547#M10138</link>
      <description>Ralph,&lt;BR /&gt;According to man pages, nogrpid works for UFS and AdvFS. &lt;BR /&gt;I just tested it too, it works. :-)&lt;BR /&gt;&lt;BR /&gt;regds,&lt;BR /&gt;Abdul.</description>
      <pubDate>Fri, 04 Jun 2004 16:38:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296547#M10138</guid>
      <dc:creator>Abdul Rahiman</dc:creator>
      <dc:date>2004-06-04T16:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Inherit group from parent directory</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296548#M10139</link>
      <description>Ralf, Yes, /wrk is a file system.  The nogrpid option looks like the ticket.  We will give it a try.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Steven</description>
      <pubDate>Fri, 04 Jun 2004 17:20:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296548#M10139</guid>
      <dc:creator>Steven Whatley</dc:creator>
      <dc:date>2004-06-04T17:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: Inherit group from parent directory</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296549#M10140</link>
      <description>Steven,&lt;BR /&gt;&lt;BR /&gt;Ralf was referring to nfs filesystem.&lt;BR /&gt;&lt;BR /&gt;greetings,&lt;BR /&gt;&lt;BR /&gt;Michael</description>
      <pubDate>Sat, 05 Jun 2004 04:22:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296549#M10140</guid>
      <dc:creator>Michael Schulte zur Sur</dc:creator>
      <dc:date>2004-06-05T04:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Inherit group from parent directory</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296550#M10141</link>
      <description>Hi steven,&lt;BR /&gt;&lt;BR /&gt;if you do not have too MANY groups, how about create file set for each group under wrk_domain, then it's easy to tell how much space is used for each file set.&lt;BR /&gt;&lt;BR /&gt;just a idea. also you can set limit too.&lt;BR /&gt;&lt;BR /&gt;Cheers !&lt;BR /&gt;&lt;BR /&gt;YJ</description>
      <pubDate>Mon, 07 Jun 2004 16:01:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296550#M10141</guid>
      <dc:creator>Yong_7</dc:creator>
      <dc:date>2004-06-07T16:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Inherit group from parent directory</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296551#M10142</link>
      <description>Steven,&lt;BR /&gt;Would appreciate if you could assign points to the replies as a way of thanking and indicating how the responses helped you in resolving the problem.&lt;BR /&gt;&lt;BR /&gt;thanks,&lt;BR /&gt;Abdul.</description>
      <pubDate>Mon, 07 Jun 2004 17:01:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296551#M10142</guid>
      <dc:creator>Abdul Rahiman</dc:creator>
      <dc:date>2004-06-07T17:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Inherit group from parent directory</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296552#M10143</link>
      <description>Don't worry, I will assign points.  Due to restrictions since thwese are poroduction boxes, I can't apply the fix until Monday.  After that, I will assign points.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Steven</description>
      <pubDate>Thu, 10 Jun 2004 15:18:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/inherit-group-from-parent-directory/m-p/3296552#M10143</guid>
      <dc:creator>Steven Whatley</dc:creator>
      <dc:date>2004-06-10T15:18:13Z</dc:date>
    </item>
  </channel>
</rss>

