- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Disable ACL
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
Forums
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
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
12-10-2001 01:32 PM
12-10-2001 01:32 PM
Disable ACL
I got a server where I found many file with ACL enabled. (The permission finish with a +). With all acl command I got Function is not available and I have many error with PAX, and all mv, cp, etc. os command.
Someone know how disabling ACL feature on all my file?!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2001 01:46 PM
12-10-2001 01:46 PM
Re: Disable ACL
I am not sure whether u can disable the ACL permissions!
U can use 'chacl -d' command to remove acl entries from file/s
see man pages of chacl, acl, getacl, cpacl, setacl ..
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2001 01:54 PM
12-10-2001 01:54 PM
Re: Disable ACL
I don't think there is anyway you can disable ACLs.
But it's easy to manipulate acls. You can get all the acls with the command
find /yourdir -print |lsacl > file
You can use chacl command to change the acls.
chacl -z file will delete all the acls and keep the base permissions.
find /yourdir -exec chacl -z {} \;
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2001 02:24 PM
12-10-2001 02:24 PM
Re: Disable ACL
Hi,
getacl() returns a complete listing of all ACL entries (uid.gid, mode) in an existing file's access control list. path points to a path name of a file.
Similarly, fgetacl() returns a complete listing of all ACL entries for an open file known by the file descriptor fildes.
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2002 05:02 PM
08-15-2002 05:02 PM
Re: Disable ACL
I managed to remove all the ACL entries for my files (accidentally) when I had to remove them all to another location using tar and then restored them all after replacing a disk in a striped setup.
Tar cannot handle the acls so they are removed. In the future I will use fbackup to move files in this way.
I hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2002 08:34 AM
08-20-2002 08:34 AM
Re: Disable ACL
Thanks for the help, appreciated. I zap and reinstall the whole server... So now, no more ACP in the picture...
:-)