- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- setfacl: : Operation not supported
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2010 05:04 AM
06-25-2010 05:04 AM
setfacl: : Operation not supported
Good evening.
One of the FS has the issue with setfacl on RHEL 5.2
Setfacl is working fine on OS mount point like /var /usr /opt etc.., but when I am trying with other mount point like /data It’s throwing an error as below.
setfacl: data: Operation not supported
When I searched in it google, they suggested to remount the file system with option below
/dev/md1 / ext3 rw,acl 1 1
1) How come it’s working on only with OS filesystems?
2) Is that any kernel or default OS mountpoint type defers from other mount point?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2010 05:17 AM
06-25-2010 05:17 AM
Re: setfacl: : Operation not supported
Discussions on a similar problem -
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=766980
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=982847
Looks like you have to remount the mount point.
Regards,
Murali
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2010 05:25 AM
06-25-2010 05:25 AM
Re: setfacl: : Operation not supported
And what, exactly, is "data" ("/data")?
mount
> 1) [...]
My psychic powers are too weak to tell me how
you created the "data" file system, or how
you mounted it.
It probably works only on file systems which
know what an ACL is. So, if you're expecting
it to work on a FAT-format floppy or USB
EEPROM gizmo, then prepare to be
disappointed.
> 2) [...]
Huh?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2010 09:29 AM
06-25-2010 09:29 AM
Re: setfacl: : Operation not supported
mount -oremount,acl /data
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2010 09:44 AM
06-25-2010 09:44 AM
Re: setfacl: : Operation not supported
The mount option "acl" is not the *only* way to specify that ACLs will be used on the filesystem.
You can use the "tune2fs" command to modify the default mount options of any ext2/ext3 filesystem. For example:
tune2fs -o acl /dev/md1
would configure the filesystem on /dev/md1 to enable the "acl" option by default, so you won't have to specify it in /etc/fstab.
2.) The default OS filesystems are created by the OS installation program (anaconda). Probably it runs the equivalent of the above-mentioned tune2fs command on each filesystem it creates automatically...
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2010 07:35 PM
06-25-2010 07:35 PM
Re: setfacl: : Operation not supported
a small doubt, while remounting will the process which are running on the FS will be killed? please advise me
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2010 02:58 AM
06-26-2010 02:58 AM
Re: setfacl: : Operation not supported
The "remount" option is used when you want to remount a already mounted
file system. This is done in order to change the mount flags of the file system.
something like a readonly FS is now made writeable.
The device/mount point is not affected.
Hence the process running on the FS should not get killed when you are doing
a remount of already mounted FS.
For more details, refer
http://linux.die.net/man/8/mount
-> remount
Hope this helps.
Regards,
Murali
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2010 01:51 AM
07-01-2010 01:51 AM