- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Simple ACL question - Lots of points!!!
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
03-14-2001 07:06 AM
03-14-2001 07:06 AM
I was told that a script is running that resets my ACL's every so often. I'm not sure it's running...
New to the UNIX world,
Andy
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2001 07:22 AM
03-14-2001 07:22 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2001 07:33 AM
03-14-2001 07:33 AM
Re: Simple ACL question - Lots of points!!!
lsacl and chacl
however the use of acls is heavily dependant on your filesystem. You will need JFS version
3.3 to do them or else use HFS filesystems.
What the essentially do is to finetune access
control to files a little more in depth than
just users group and others.
The commandline syntax is a little bizarre, but
well documented in the man.
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2001 08:01 AM
03-14-2001 08:01 AM
Re: Simple ACL question - Lots of points!!!
No documentation is clear about that.
All the info is great so far.
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2001 09:59 AM
03-14-2001 09:59 AM
Re: Simple ACL question - Lots of points!!!
Let me explain the "Access Control List" (acl) a little bit more.
just an example:
(traditional)
ls -l tempfile
-rwxr-xr-x 1 steve sales 138 Jan 4 16:00 tempfile
With access control list:
lsacl -l tempfile
tempfile: # filename
rwx steve.% # read ,write an execute permission for user steve
r-x %.sales # read and execute permission for group sales
r-x %.% # read and execute permission all others (world)
You can see that "others" have read permission on tempfile.
If you want that "others" have no read permission you have to
change the rights on the file with:
chacl "%.% - r)" tempfile
Your question:
"world" is the same as "others"
So if you want that the "world" can not see your directory structure,
you have to change the rights on your directory to -rwxr-x---
if you want that the "world" and "any user in your group"can not see your directory structure,
you have to change the rights on your directory to -rwx------
Just put those permissions on your directory and no one can see your files.
I hope this helps
Marcel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2001 03:05 PM
03-15-2001 03:05 PM
Re: Simple ACL question - Lots of points!!!
if you are using VxFS (Veritas or Journaled File Systems)
then you need to install the JFS3.3 (and exchange the
two drivers with a single new one in your kernel).
AND then the commands are NOT "lsacl" and "chacl"
any more, but "getacl" and "setacl" and a different
syntax.
HTH,
Wodisch