मैक ओएस 10.13 हाई सिएरा में सभी उपलब्ध एसीएल विशेषताएँ क्या हैं?


2

मैक ओएस में, फ़ाइल और फ़ोल्डर एक्सेस अनुमतियों को मूल यूनिक्स (POSIX) स्टाइल के मालिक / समूह / सभी के साथ लेयर्ड तरीके से प्रबंधित किया जाता है, साथ ही अतिरिक्त एक्सेस कंट्रोल के लिए हाल ही में जोड़े गए एक्सेस कंट्रोल लिस्ट (ACL) के साथ मोड्स को पढ़ा / लिखा / निष्पादित किया जाता है।

POSIX और ACL नियंत्रण दोनों को पारंपरिक यूनिक्स कमांड 'chmod' के साथ कमांड लाइन से प्रबंधित किया जा सकता है। उदाहरण के लिए:

Mac:~> sudo chmod -R +a "staff allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr,writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" path/to/folder*

मैक ओएस 10.13 (हाई सिएरा) में बसने वाले सभी एसीएल विशेषताओं की व्यापक सूची क्या है? प्रत्येक का क्या अर्थ है?

जवाबों:


4

एसीएल विशेषताओं की एक व्यापक सूची पुरुष पृष्ठों से परामर्श करके उपलब्ध है:

man chmod

यदि आप मैन पेज डाउनलोड करने और macOS ( कुछ $ $) के लिए डैश (मुक्त) या डैश जैसे मैन पेज दिखाने के लिए GUI ऐप पसंद करते हैं ।

मैं chmod के पूरे दस्तावेज को सूचीबद्ध नहीं करूंगा:

...

ACL MANIPULATION OPTIONS


 ACLs are manipulated using extensions to the symbolic mode grammar.  Each
 file has one ACL, containing an ordered list of entries.  Each entry
 refers to a user or group, and grants or denies a set of permissions.  In
 cases where a user and a group exist with the same name, the user/group
 name can be prefixed with "user:" or "group:" in order to specify the
 type of name.

 If the user or group name contains spaces you can use ':' as the delim-
 iter between name and permission.

 The following permissions are applicable to all filesystem objects:
       delete  Delete the item.  Deletion may be granted by either this
               permission on an object or the delete_child right on the
               containing directory.
       readattr
               Read an objects basic attributes.  This is implicitly
               granted if the object can be looked up and not explicitly
               denied.
       writeattr
               Write an object's basic attributes.
       ...

बेहद शर्मिंदगी वाला! RTFM! uggh। मैक ओएस है यूनिक्स। उनके पास मैन पेज हैं।
मैट

इस पर ध्यान दिलाने के लिए धन्यवाद। +1। मैन पेज सभी एसीएल अनुमतियाँ दिखाता है।
मैट
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.