March 19, 2024, 09:06:49 AM

News : LinuxSolved.com Linux Help Community Forum..


Author Topic: File Access Control List (ACL) desktop application  (Read 13391 times)

Offline pedro

  • Linux Noob !
  • *
  • Posts: 14
File Access Control List (ACL) desktop application
« on: March 20, 2008, 07:42:49 PM »

File Access Control List (ACL) permissions have been around for linux for quite some time, but it's one of those very useful features that for unknown reasons nobody talks about. They are an extension to the traditional and very limited unix User-Group-World permissions that allows the user to set access to the file system on a per-user basis. It's very similar to windows NTFS file permissions management.

There's a very nice extension for nautilus (gnome file browser) to manage file ACL. The extension is named Eiciel, and you can find it here:
http://rofi.roger-ferrer.org/eiciel/
If you have fedora, you can install it by typing in the command line:
Code: [Select]
sudo yum install eiciel
You also need to enable ACL for the partition. To do that you need to edit the /etc/fstab configuration file, and change the appropriate row. Where it says "defaults" should read "rw,acl" for ext2 and ext3 partitions, for example the line:
Code: [Select]
/dev/sdb5    /mnt/data     ext3    defaults    1 2Should become:
Code: [Select]
/dev/sdb5    /mnt/data     ext3    rw,acl      1 2
And mount, or remount the partition with:
Code: [Select]
sudo mount /mnt/data to mount it.
Code: [Select]
sudo mount -o remount /mnt/data to remount it, if it was already mounted.

Now, if you right-click->Properties on a folder in that partition, you'll get a new "Access Control List" tab where you can set fine-grained access permissions easily. You can for example allow access to a folder to a single user, and not the rest of the users.





Offline aktiwari4u

  • LST CareTaker
  • Crescent
  • *****
  • Posts: 161
    • http://aktiwari4u.tk/
Re: File Access Control List (ACL) desktop application
« Reply #1 on: September 18, 2008, 12:17:18 PM »
Great INfo

Offline arvindsony

  • Linux Noob !
  • *
  • Posts: 6
Re: File Access Control List (ACL) desktop application
« Reply #2 on: May 19, 2009, 11:32:45 AM »
thankx