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
06-10-2002 08:55 AM
06-10-2002 08:55 AM
ACL
Need to give a user xyz access to the following dir.
drwxr-xr-x appl dba reports
how should I go about using acl's ??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2002 09:00 AM
06-10-2002 09:00 AM
Re: ACL
# cd dir_name
# chacl 'xyz.%=rwx' reports
# lsacl reports (for checking)
xyz.% - the first part in the user name. 'rwx' is the permission.
If you want to give group permission, for group 'abc', then:
# chacl '%.abc=rwx' reports
# man acl (for details)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2002 09:02 AM
06-10-2002 09:02 AM
Re: ACL
try these:
man acl
man chacl
man setacl
man getacl
man lsacl
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2002 09:20 AM
06-10-2002 09:20 AM
Re: ACL
# cd /opt
# getacl test
=file: test
=owner: root
=group: sys
user::rwx
group::r-x
class:rwx
other:r-x
# setacl -m user:skchan:rwx test
# getacl test
=file: test
=owner: root
=group: sys
user::rwx
user:skchan:rwx
group::r-x
class:rwx
other:r-x
Man "setacl" for more details ..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2002 09:21 AM
06-10-2002 09:21 AM
Re: ACL
May be you can refer to this too :
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90684/B2355-90684_top.html&con=/hpux/onlinedocs/B2355-90684/00/00/6-con.html&toc=/hpux/onlinedocs/B2355-90684/00/00/6-toc.html&searchterms=command%7csyntax%7cacl&queryid=20020610-102959
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2002 09:23 AM
06-10-2002 09:23 AM
Re: ACL
When I tried chacl it gave me an error
(chacl 'xyz.%=rwx' report)
Function is not available (errno = 251)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2002 09:29 AM
06-10-2002 09:29 AM
Re: ACL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2002 09:37 AM
06-10-2002 09:37 AM
Re: ACL
As S.K said, the 'chacl' command will be replaced with 'setacl' command on vxfs file systems. You can use 'getacl' instead of 'lsacl'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2002 09:40 AM
06-10-2002 09:40 AM
Re: ACL
sh: setacl: not found.
Do I need to install something to get this working..???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2002 09:42 AM
06-10-2002 09:42 AM
Re: ACL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2002 09:46 AM
06-10-2002 09:46 AM
Re: ACL
# fstyp -v /dev/vg??/lvol?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2002 09:52 AM
06-10-2002 09:52 AM
Re: ACL
vxfs
version: 3
f_bsize: 8192
f_frsize: 1024
f_blocks: 7692288
f_bfree: 1649036
f_bavail: 1545972
f_files: 493152
f_ffree: 412256
f_favail: 412256
f_fsid: 1073807373
f_basetype: vxfs
f_namemax: 254
f_magic: a501fcf5
f_featurebits: 0
f_flag: 16
f_fsindex: 6
f_size: 7692288
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2002 10:01 AM
06-10-2002 10:01 AM
Re: ACL
# vxupgrade -n 4 -r /dev/vg00/rlvol4 /tmp ( for /tmp file system)
Check this document too (TKB #2200131019):
http://support2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000056413901
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2002 11:53 AM
06-10-2002 11:53 AM
Re: ACL
# swlist -l fileset JFS
After installing 3.3 the FS layout has to be upgraded to version 4. You do want to check out the online doc on JFS's ACL also..
http://www.docs.hp.com/hpux/onlinedocs/os/jfs_acl.pdf