लिनक्स के तहत मेरी निर्देशिका में कुछ फाइलें .
अनुमतियों की सूची के अंत में हैं।
- बिंदु के अंत में डॉट का क्या अर्थ है
-rw-r--r--
? - आप इसे कैसे सेट करते हैं
chmod
?
लिनक्स के तहत मेरी निर्देशिका में कुछ फाइलें .
अनुमतियों की सूची के अंत में हैं।
-rw-r--r--
?chmod
?जवाबों:
ls.c
(लाइन 3785) के अनुसार , .
एक SELinux ACL का मतलब है । ( सामान्य ACL का+
मतलब है ।)
मेरा भी यही सवाल था। इसे खोजने में मुझे थोड़ा समय लगा, "मैन ls" पेज को सौ बार (अच्छी तरह से, शायद ऐसा नहीं है) तब तक जब तक कि मैं अंत में SEE ALSO अनुभाग में नोट को कमांड का उपयोग करने के बारे में नहीं देख पाया:
info coreutils 'ls invocation'
"-L" (--format = long) का वर्णन करने वाले अनुभाग में:
Following the file mode bits is a single character that specifies
whether an alternate access method such as an access control list
applies to the file. When the character following the file mode
bits is a space, there is no alternate access method. When it is
a printing character, then there is such a method.
GNU `ls' uses a `.' character to indicate a file with an SELinux
security context, but no other alternate access method.
A file with any other combination of alternate access methods is
marked with a `+' character.
इसका मतलब है कि फ़ाइल में SELinux के साथ एक पहुंच सूची है। इस विषय को देखें, यह आपको बताता है कि आपको फ़ाइल को संपादित करने / बदलने की अनुमति कैसे दी जाए http://ubuntuforums.org/showthread.php?t=1315684
यह SELinux संदर्भ है। प्रयत्न, कोशिशls -Z /your/file
मेरे को उद्धृत करते हुए man ls
SELinux options: --lcontext Display security context. Enable -l. Lines will probably be too wide for most displays. -Z, --context Display security context so it fits on most displays. Displays only mode, user, group, security context and file name. --scontext Display only security context and file name.
इसे बदलने के लिए, इनमें से कोई एक कमांड आज़माएँ: chcon
या semanage fcontext
याrestorecon
यहाँ काफी स्पष्ट रूप से समझाया गया है: https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Security-Enhanced_Linux/sect-Surity-Enhanced_Linux-Working_with_SELinux-SELinux.Cuxux
सबसे अधिक संभावना है कि यह एक्सेस कंट्रोल लिस्ट (एसीएल) के कारण है, हालांकि मैंने उन्हें केवल एक के +
रूप में दिखाया है rw-rw-rw-+
। शायद .
इसका मतलब है कि उस फ़ाइल पर एसीएल की कमी है।
आप getfacl .
वर्तमान निर्देशिका में यह देखने का प्रयास कर सकते हैं कि उन फ़ाइलों का उपयोग क्या नियंत्रित करता है।