<?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 Default directory acls in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/default-directory-acls/m-p/3733072#M21808</link>
    <description>I wonder if it's possible with default acls to arrange a situation that whatever group creates a file under a certain directory, the new file would have always the same group name.&lt;BR /&gt;The default directory acl then would look like this:&lt;BR /&gt;default:user::rwx&lt;BR /&gt;default:group:defaultgroupname:rw-&lt;BR /&gt;default:mask::rw-&lt;BR /&gt;default:other::rw-&lt;BR /&gt;&lt;BR /&gt;Thanks for your input,&lt;BR /&gt;Philippe</description>
    <pubDate>Thu, 16 Feb 2006 11:09:33 GMT</pubDate>
    <dc:creator>Philippe Vervoort</dc:creator>
    <dc:date>2006-02-16T11:09:33Z</dc:date>
    <item>
      <title>Default directory acls</title>
      <link>https://community.hpe.com/t5/operating-system-linux/default-directory-acls/m-p/3733072#M21808</link>
      <description>I wonder if it's possible with default acls to arrange a situation that whatever group creates a file under a certain directory, the new file would have always the same group name.&lt;BR /&gt;The default directory acl then would look like this:&lt;BR /&gt;default:user::rwx&lt;BR /&gt;default:group:defaultgroupname:rw-&lt;BR /&gt;default:mask::rw-&lt;BR /&gt;default:other::rw-&lt;BR /&gt;&lt;BR /&gt;Thanks for your input,&lt;BR /&gt;Philippe</description>
      <pubDate>Thu, 16 Feb 2006 11:09:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/default-directory-acls/m-p/3733072#M21808</guid>
      <dc:creator>Philippe Vervoort</dc:creator>
      <dc:date>2006-02-16T11:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Default directory acls</title>
      <link>https://community.hpe.com/t5/operating-system-linux/default-directory-acls/m-p/3733073#M21809</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;In order to have the same ownership for every file under a directory do this:&lt;BR /&gt;&lt;BR /&gt;chown -R user:group /dir&lt;BR /&gt;&lt;BR /&gt;here specify the group you want to have the ownership on the dir and the files under it. (new and existing)&lt;BR /&gt;&lt;BR /&gt;then do&lt;BR /&gt;chmod -R 755 /dir&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2006 11:20:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/default-directory-acls/m-p/3733073#M21809</guid>
      <dc:creator>Vipulinux</dc:creator>
      <dc:date>2006-02-16T11:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Default directory acls</title>
      <link>https://community.hpe.com/t5/operating-system-linux/default-directory-acls/m-p/3733074#M21810</link>
      <description>To do this:&lt;BR /&gt;&lt;BR /&gt;"the new file would have always the same group name"&lt;BR /&gt;&lt;BR /&gt;Enable the SGID bit on the directory:&lt;BR /&gt;&lt;BR /&gt;chmod g+s /path/to/directory</description>
      <pubDate>Thu, 16 Feb 2006 12:46:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/default-directory-acls/m-p/3733074#M21810</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-02-16T12:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Default directory acls</title>
      <link>https://community.hpe.com/t5/operating-system-linux/default-directory-acls/m-p/3733075#M21811</link>
      <description>Ivan,&lt;BR /&gt;Thanks, this is what I was looking for. I didn't know this trick !!&lt;BR /&gt;&lt;BR /&gt;Vipulinux,&lt;BR /&gt;For your suggestion to work, it should have been chmod 2775 /dir , which is then essentially the same as Ivan's answer.&lt;BR /&gt;Thanks anyhow.&lt;BR /&gt;&lt;BR /&gt;Philippe</description>
      <pubDate>Fri, 17 Feb 2006 04:51:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/default-directory-acls/m-p/3733075#M21811</guid>
      <dc:creator>Philippe Vervoort</dc:creator>
      <dc:date>2006-02-17T04:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Default directory acls</title>
      <link>https://community.hpe.com/t5/operating-system-linux/default-directory-acls/m-p/3733076#M21812</link>
      <description>Hi&lt;BR /&gt;Thanks for pointing that out&lt;BR /&gt;&lt;BR /&gt;Cheers</description>
      <pubDate>Fri, 17 Feb 2006 05:03:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/default-directory-acls/m-p/3733076#M21812</guid>
      <dc:creator>Vipulinux</dc:creator>
      <dc:date>2006-02-17T05:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: Default directory acls</title>
      <link>https://community.hpe.com/t5/operating-system-linux/default-directory-acls/m-p/3733077#M21813</link>
      <description>chmod g+s &lt;DIRECTORY&gt;&lt;BR /&gt;chmod 2775 &lt;DIRECTORY&gt;&lt;BR /&gt;&lt;BR /&gt;is same. View the permission as,&lt;BR /&gt;&lt;BR /&gt;ls -ld &lt;DIRECTORY&gt;&lt;BR /&gt;&lt;BR /&gt;see man chmod.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu&lt;/DIRECTORY&gt;&lt;/DIRECTORY&gt;&lt;/DIRECTORY&gt;</description>
      <pubDate>Fri, 17 Feb 2006 05:11:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/default-directory-acls/m-p/3733077#M21813</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-02-17T05:11:43Z</dc:date>
    </item>
  </channel>
</rss>

