`-Rw-r - r -` के अंत में डॉट का क्या अर्थ है? आप इसे `चामोद` के साथ कैसे सेट करते हैं?


105

लिनक्स के तहत मेरी निर्देशिका में कुछ फाइलें .अनुमतियों की सूची के अंत में हैं।

  • बिंदु के अंत में डॉट का क्या अर्थ है -rw-r--r--?
  • आप इसे कैसे सेट करते हैं chmod?

जवाबों:



36

मेरा भी यही सवाल था। इसे खोजने में मुझे थोड़ा समय लगा, "मैन 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.

11

इसका मतलब है कि फ़ाइल में SELinux के साथ एक पहुंच सूची है। इस विषय को देखें, यह आपको बताता है कि आपको फ़ाइल को संपादित करने / बदलने की अनुमति कैसे दी जाए http://ubuntuforums.org/showthread.php?t=1315684


यह मेरे लिए काम नहीं करता
जोसेफ क्लिमुक

11

यह 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


2

सबसे अधिक संभावना है कि यह एक्सेस कंट्रोल लिस्ट (एसीएल) के कारण है, हालांकि मैंने उन्हें केवल एक के +रूप में दिखाया है rw-rw-rw-+। शायद .इसका मतलब है कि उस फ़ाइल पर एसीएल की कमी है।

आप getfacl .वर्तमान निर्देशिका में यह देखने का प्रयास कर सकते हैं कि उन फ़ाइलों का उपयोग क्या नियंत्रित करता है।


3
नहींं, डॉट का मतलब ACL की कमी नहीं है - अन्य जवाब देखें
Linker3000
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.