<?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: ACL in linux in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938092#M65564</link>
    <description>setfacl -Rx g:mygroup:rwx mydir&lt;BR /&gt;getfacl -R mydir&lt;BR /&gt;&lt;BR /&gt;remenber to backup acl! most backup utils don't.</description>
    <pubDate>Tue, 13 Feb 2007 04:02:41 GMT</pubDate>
    <dc:creator>Andrea Rossi</dc:creator>
    <dc:date>2007-02-13T04:02:41Z</dc:date>
    <item>
      <title>ACL in linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938086#M65558</link>
      <description>Hi Experts,&lt;BR /&gt;&lt;BR /&gt;Can any one help me on this.&lt;BR /&gt;&lt;BR /&gt;I want to give previlage to user1 to access user2's home directory using ACL. Both are in different groups. or is there a better way?&lt;BR /&gt;&lt;BR /&gt;Please help.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;Manoj Sivan</description>
      <pubDate>Sun, 04 Feb 2007 23:37:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938086#M65558</guid>
      <dc:creator>Manoj Sivan</dc:creator>
      <dc:date>2007-02-04T23:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: ACL in linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938087#M65559</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;groupadd theguys  &lt;BR /&gt;# We create a group for both users.&lt;BR /&gt;usermod -G theguys user1 &lt;BR /&gt;usermod -G theguys user2&lt;BR /&gt;&lt;BR /&gt;chmod g+rwx /home/user1&lt;BR /&gt;chmod g+rwx /home/user2&lt;BR /&gt;&lt;BR /&gt;chgrp theguys /home/user1&lt;BR /&gt;chgrp thegusy /home/user2&lt;BR /&gt;&lt;BR /&gt;Its much simpler.&lt;BR /&gt;&lt;BR /&gt;Since the users are in the same group they can access each others home directory&lt;BR /&gt;&lt;BR /&gt;There are lots of ways to get this task complete.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 05 Feb 2007 04:19:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938087#M65559</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2007-02-05T04:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: ACL in linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938088#M65560</link>
      <description>You can enable ACLs on an Ext[23] filesystem easily if your kernel supports them&lt;BR /&gt;&lt;BR /&gt;Note, most distros' vanilla kernels do support ACLs.&lt;BR /&gt;You could simply try modprobe the acl driver,&lt;BR /&gt;or refer to your distro's config file&lt;BR /&gt;&lt;BR /&gt;e.g. on my RHEL 4.3 box&lt;BR /&gt;&lt;BR /&gt;# grep ACL /boot/config-2.6.9-5.ELsmp &lt;BR /&gt;CONFIG_EXT2_FS_POSIX_ACL=y&lt;BR /&gt;CONFIG_EXT3_FS_POSIX_ACL=y&lt;BR /&gt;CONFIG_FS_POSIX_ACL=y&lt;BR /&gt;&lt;BR /&gt;# lvcreate -n lv_acl_support -L 128m vgrootX&lt;BR /&gt;  Logical volume "lv_acl_support" created&lt;BR /&gt;# mkfs.ext3 -q /dev/vgrootX/lv_acl_support &lt;BR /&gt;max_blocks 134217728, rsv_groups = 16384, rsv_gdb = 256&lt;BR /&gt;inode.i_blocks = 3074, i_size = 67383296&lt;BR /&gt;# tune2fs -o acl /dev/vgrootX/lv_acl_support &lt;BR /&gt;tune2fs 1.35 (28-Feb-2004)&lt;BR /&gt;# mkdir -p /mnt/acl_fs&lt;BR /&gt;# mount -t ext3 -o acl /dev/vgrootX/lv_acl_support /mnt/acl_fs&lt;BR /&gt;# grep acl /etc/mtab &lt;BR /&gt;/dev/mapper/vgrootX-lv_acl_support /mnt/acl_fs ext3 rw,acl 0 0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You can also tuen2fs -o acl an existing ext filesystem, even if mounted I would assume, and mount -o remount,acl it online.&lt;BR /&gt;&lt;BR /&gt;Then lookup and setup ACLs on files on that mount at your heart's content&lt;BR /&gt;(see man of getfacl and setfacl)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 05 Feb 2007 08:14:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938088#M65560</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2007-02-05T08:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: ACL in linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938089#M65561</link>
      <description>I suggest you to use the  Steven E. Protter option or a similar variation, thus, to avoid system complexity that could derivate to less security.&lt;BR /&gt;&lt;BR /&gt;Also, remember that not all backup tools can save ACLs.</description>
      <pubDate>Mon, 05 Feb 2007 08:39:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938089#M65561</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2007-02-05T08:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: ACL in linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938090#M65562</link>
      <description>Manoj,&lt;BR /&gt;&lt;BR /&gt;I also agree that SEP's solution, while less ellegant, is easier and safer. The problem with ACL's is that you need to educate your user's to understand them. &lt;BR /&gt;&lt;BR /&gt;A simple "ls -l" should append a plus-sign to the permissions string, however you need to use "getfacl" and "setfacl" in order to see all the permissions information.&lt;BR /&gt;&lt;BR /&gt;I know it's old, but see: &lt;A href="http://www.vanemery.com/Linux/ACL/linux-acl.html" target="_blank"&gt;http://www.vanemery.com/Linux/ACL/linux-acl.html&lt;/A&gt; for more information.&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Feb 2007 03:16:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938090#M65562</guid>
      <dc:creator>Andrew Cowan</dc:creator>
      <dc:date>2007-02-06T03:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: ACL in linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938091#M65563</link>
      <description>There is one tweak that can make SEPs solution a little more liveable.&lt;BR /&gt;If user1 and user2 only have "theguys" as secondary groups then files they create won't belong to group "theguys".  That means that they may have access to each other's home directories but be unable to read the files in them.&lt;BR /&gt;&lt;BR /&gt;Adding a set-group-id bit on a directory in an ext2/ext3 filesystem will cause new files to be created in that directory with their group set to the same group as the directory.  (And new directories under that directory will be created with the set-group-id bit on so the effect propagates downward.)&lt;BR /&gt;&lt;BR /&gt;chmod g+rwxs /home/user1&lt;BR /&gt;chmod g+rwxs /home/user2&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Feb 2007 19:08:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938091#M65563</guid>
      <dc:creator>Mike Stroyan</dc:creator>
      <dc:date>2007-02-08T19:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: ACL in linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938092#M65564</link>
      <description>setfacl -Rx g:mygroup:rwx mydir&lt;BR /&gt;getfacl -R mydir&lt;BR /&gt;&lt;BR /&gt;remenber to backup acl! most backup utils don't.</description>
      <pubDate>Tue, 13 Feb 2007 04:02:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acl-in-linux/m-p/3938092#M65564</guid>
      <dc:creator>Andrea Rossi</dc:creator>
      <dc:date>2007-02-13T04:02:41Z</dc:date>
    </item>
  </channel>
</rss>

