"Chmod + x <filename>" क्या करता है और मैं इसका उपयोग कैसे करूं?


36

मैं एक "बैच फ़ाइल" (एक शेल स्क्रिप्ट) के उबंटू एनालॉग लिखना चाहता हूं। लेकिन मुझे नहीं पता कि इसे बनाने के लिए कमांड का उपयोग कैसे किया जाए ताकि स्क्रिप्ट को चलाया जा सके। और न ही मुझे पता है कि इसका उपयोग कहां करना है।chmod +x filename


1
साइट नोट के रूप में: लिनक्स बैच-फाइलों का उपयोग नहीं करता है। यह शेल-स्क्रिप्ट का उपयोग करता है। ये ज्यादातर BASH (बॉर्न अगेन SHell) द्वारा निष्पादित किए जाते हैं।
s3lph

@the_Seppi उबंटू में डिफ़ॉल्ट शेल डैश है (डेबियन अल्मक्विस्ट शेल) हालांकि डैश और बैश समान नहीं है और यदि आप चाहें तो बैश का उपयोग कर सकते हैं।
वॉरेन हिल

यह अस्पष्ट हो सकता है, लेकिन कभी भी विषय नहीं था। क्या लोगों को लगता है कि यह विंडोज और डॉस के लिए वास्तविक बैच फाइलें लिखने के बारे में था? chmodवास्तव में उन OSes पर लागू नहीं होता है और "बैच फ़ाइल" डराने वाले उद्धरणों में थी । यहाँ ओपी (पिछली बार 2014 में देखा गया था) एक बैच फ़ाइल के समान कुछ लिखना और चलाना चाहता था। यूनिक्स की तरह OSes के विपरीत, विंडोज (और DOS) उपयोगकर्ताओं chmod +xको इसे बनाने के लिए कुछ भी उपयोग करने की आवश्यकता नहीं है ताकि वे अपनी स्क्रिप्ट को उसी तरह लॉन्च कर सकें जिस तरह वे निष्पादन योग्य बायनेरी लॉन्च करते हैं। मैंने प्रश्न को स्पष्ट करने के लिए थोड़ा संपादित किया है, और मैं फिर से खोलने के लिए मतदान कर रहा हूं।
एलियाह कगन

जवाबों:


38

संक्षेप में:

chmod +xएक फ़ाइल (आपकी स्क्रिप्ट) पर केवल इसका मतलब है, कि आप इसे निष्पादन योग्य बना देंगे। अपनी स्क्रिप्ट पर राइट क्लिक करें और गुण -> अनुमतियाँ -> प्रोग्राम के रूप में फ़ाइल निष्पादित करने की अनुमति दें , आपको टर्मिनल में कमांड के समान सटीक परिणाम के साथ छोड़ देता है।

यदि आप जिस फ़ाइल को अनुमतियों को बदलना चाहते हैं वह सिस्टम निर्देशिका के भीतर स्थित है, तो आपको इसकी आवश्यकता हो सकती है root, जैसे: ( sudoकमांड का उपयोग करते समय सावधान रहें )

sudo chmod +x /usr/share/testfolder/aFile 

इसके अलावा यह स्पष्ट नहीं है, कि वास्तव में आप यहां क्या संग्रह करना चाहते हैं। कृपया अपने प्रश्न को संपादित करें और वास्तविक समस्या पर कुछ और विवरण दें!

अधिक जानकारी के लिए आप इस प्रश्न का भी उल्लेख कर सकते हैं: chmod u + x 'बनाम' chmod + x


लंबे समय में:

man chmodएक टर्मिनल विंडो में टाइप करें ( Ctrl+ Alt+ T) और आपको निम्न आउटपुट मिलेगा:


NAME: chmod - फ़ाइल मोड बिट्स बदलें

SYNOPSIS

chmod [OPTION]... MODE[,MODE]... FILE...
chmod [OPTION]... OCTAL-MODE FILE...
chmod [OPTION]... --reference=RFILE FILE...

विवरण

This  manual page documents the GNU version of chmod.  chmod changes the
file mode bits of each given file according to mode, which can be either
a  symbolic representation of changes to make, or an octal number repre
senting the bit pattern for the new mode bits.

The format of a symbolic mode  is  [ugoa...][[+-=][perms...]...],  where
perms  is  either  zero or more letters from the set rwxXst, or a single
letter from the set ugo.  Multiple symbolic modes can  be  given,  sepa
rated by commas.

A  combination  of  the letters ugoa controls which users' access to the
file will be changed: the user who owns  it  (u),  other  users  in  the
file's  group (g), other users not in the file's group (o), or all users
(a).  If none of these are given, the effect is as if a were given,  but
bits that are set in the umask are not affected.

The  operator  +  causes  the selected file mode bits to be added to the
existing file mode bits of each file; - causes them to be removed; and =
causes them to be added and causes unmentioned bits to be removed except
that a directory's unmentioned set  user  and  group  ID  bits  are  not
affected.

The  letters  rwxXst  select file mode bits for the affected users: read
(r), write (w), execute (or search for directories) (x),  execute/search
only  if  the  file is a directory or already has execute permission for
some user (X), set user or group ID on execution (s),  restricted  dele
tion  flag  or sticky bit (t).  Instead of one or more of these letters,
you can specify exactly one of the letters ugo: the permissions  granted
to  the  user  who  owns  the file (u), the permissions granted to other
users who are members of the  file's  group  (g),  and  the  permissions
granted  to  users  that  are in neither of the two preceding categories
(o).

A numeric mode is from one to four octal digits (0-7), derived by adding
up  the  bits with values 4, 2, and 1.  Omitted digits are assumed to be
leading zeros.  The first digit selects the set  user  ID  (4)  and  set
group ID (2) and restricted deletion or sticky (1) attributes.  The sec‐
ond digit selects permissions for the user who owns the file: read  (4),
write  (2),  and  execute  (1);  the third selects permissions for other
users in the file's group, with the same  values;  and  the  fourth  for
other users not in the file's group, with the same values.

chmod  never changes the permissions of symbolic links; the chmod system
call cannot change their permissions.  This is not a problem  since  the
permissions  of  symbolic  links are never used.  However, for each sym‐
bolic link listed on the command line, chmod changes the permissions  of
the  pointed-to file.  In contrast, chmod ignores symbolic links encoun‐
tered during recursive directory traversals.

सेट और सेट बिट्स

chmod clears the set-group-ID bit of a regular file if the file's  group
ID  does  not  match  the user's effective group ID or one of the user's
supplementary group IDs, unless the  user  has  appropriate  privileges.
Additional  restrictions may cause the set-user-ID and set-group-ID bits
of MODE or RFILE to be ignored.  This behavior depends on the policy and
functionality of the underlying chmod system call.  When in doubt, check
the underlying system behavior.

विकल्प

Change the mode of each FILE to MODE.

   -c, --changes
          like verbose but report only when a change is made

   --no-preserve-root
          do not treat `/' specially (the default)

   --preserve-root
          fail to operate recursively on `/'

   -f, --silent, --quiet
          suppress most error messages

   -v, --verbose
          output a diagnostic for every file processed

   --reference=RFILE
          use RFILE's mode instead of MODE values

   -R, --recursive
          change files and directories recursively

   --help display this help and exit

   --version
          output version information and exit

   Each MODE is of the form `[ugoa]*([-+=]([rwxXst]*|[ugo]))+'.

यह उत्तर मेरे लिए मज़ेदार है, क्योंकि मैंने यहाँ आने से पहले सबसे पहले मैन पेज पढ़ा, क्योंकि मैन पेज + एक्स के बारे में कुछ नहीं कहता है। क्या कोई कारण है कि आपने पूरे मैन पेज को यहाँ चिपकाया है? आपका 'संक्षेप में' उत्तर था जो मुझे चाहिए था (चामोद पर + x क्या है?), लेकिन मेरे (शायद अज्ञानी) दृष्टिकोण से, यह आपके द्वारा चिपकाए गए मैन पेज का सारांश नहीं है।
एलेक्स

1
आप एलेक्स को इस तरह इंगित करने के लिए बिल्कुल सही हैं, जो कि मज़ेदार है! मैंने पूरा करने के लिए पूरे मैन पेज को जोड़ा, क्योंकि मैं इसे इस तरह से पसंद करूंगा अगर मुझे जानकारी की तलाश हो, अभी तक प्राप्त नहीं हुई। मैंने वास्तव में अतीत में पाया, कि बहुत सारे मैन पेज ऐसे हैं, जो आप यहां बता रहे हैं। मैं बहुत खुश हूं कि सहायता की जा सकी!
v2r

"एक फ़ाइल (आपकी स्क्रिप्ट) पर chmod + x का अर्थ केवल यह है कि आप इसे निष्पादन योग्य बना देंगे" मुझे लगता है कि आप सभी उपयोगकर्ताओं के लिए निष्पादन योग्य हैं , है ना? इस तरह से मैं कम से कम मैन पेज की व्याख्या करता हूं। chmod u+xयह केवल आप के लिए निष्पादन योग्य बना देगा
जिम आहो

3

सबसे पहले, आपकी स्क्रिप्ट को घोषित करना चाहिए कि किस दुभाषिया का उपयोग करना है। आप इसे फ़ाइल की पहली पंक्ति में करते हैं। यदि यह एक शेल स्क्रिप्ट है, तो यह होना चाहिए #!/bin/shया #!/bin/bash

तो यहाँ एक स्क्रिप्ट है जो आपका उपयोगकर्ता नाम लिखती है: echo-whoami.sh

#!/bin/sh echo $(whoami)

इसे निष्पादन योग्य बनाने के लिए, उपयोग करें chmod +x echo-whoami.sh। तब आप इसका उपयोग करके चला सकते हैं ./echo-whoami.sh


3

एक बैच फ़ाइल और एक शेल स्क्रिप्ट लिनक्स के तहत समान रूप से प्रभावी रूप से दो शब्द हैं। शब्द की पटकथा कहीं अधिक बार उपयोग की जाती है , यद्यपि।

सबसे सरल शेल स्क्रिप्ट फ़ाइल में केवल कमांड लाइन होती है जैसा कि आप उन्हें कमांड लाइन पर टाइप करते हैं (यानी, बैश कमांड दुभाषिया)। सिद्धांत रूप में आप दुभाषिया को अपनी पसंद की किसी भी भाषा के साथ बदल सकते हैं (और उसके लिए दुभाषिया है)। अधिक स्पष्ट होने के लिए, यह सुझाव दिया जाता है कि आप अपनी पहली पंक्ति के साथ शुरू करें

#!/bin/sh (यदि आप विरासत प्रणालियों के साथ अधिकतम पोर्टेबिलिटी नहीं करेंगे)

या

#!/bin/bash (यदि आप कुछ अतिरिक्त सुविधाएँ चाहते हैं, तो आप शायद आज की परवाह नहीं करते हैं)

इस पंक्ति के बाद आपके आदेश दर्ज करें, प्रत्येक पंक्ति पर एक। इस प्रश्न के दायरे से परे बहुत सारे अतिरिक्त निर्माण हैं, देखें man bashया http://www.tldp.org/LDP/Bash-Beginners-Guide/Bash-Beginners-Guide.pdf (शुरुआती या http: // www के लिए) .tldp.org / LDP / abs / abs-guide.pdf (अधिक उन्नत प्रश्नों के लिए)।

वास्तव में आपकी स्क्रिप्ट को चलाने के लिए , दो आवश्यकताएं हैं: पहला, दुभाषिया प्रक्रिया को फ़ाइल पढ़ने की आवश्यकता है , और दूसरा यह जांचता है कि क्या यह निष्पादन योग्य के रूप में चिह्नित है । सुविधा कारणों से यह आपकी स्क्रिप्ट में लिखने में सक्षम होने के लिए भी उपयोगी है (इसलिए आप परिवर्तन कर सकते हैं या सुधार की आवश्यकता होनी चाहिए)।

यह मानते हुए कि आप चाहते हैं कि टीम के सदस्य और अन्य भी आपकी स्क्रिप्ट को चलाने (और देखने) में सक्षम हों, लेकिन आप उन्हें हेरफेर नहीं करना चाहते हैं, संयोजन

  • सभी के लिए अधिकार निष्पादित करें ( a+xया +x, जैसा aकि डिफ़ॉल्ट है),
  • सभी के लिए अधिकार पढ़ें ( a+rया +r, जैसा aकि फिर से डिफ़ॉल्ट है),
  • सिर्फ आपके लिए अनुमति लिखें ( u=w)

आमतौर पर आपकी फ़ाइल अनुमतियों के समझदार मूल्य हैं। आप एक कॉमा के साथ अलग हुए एकल क्रियाओं को टाइप कर सकते हैं।

हालांकि यह "एक्शन लैंग्वेज" बहुत ही आकर्षक है ( आप के बदलने से पहले अनुमति सेटिंग के आधार पर अलग-अलग परिणामों के परिणामस्वरूप +और =ऑपरेटर का अंतर नोट करें), वे टाइप करने के लिए थकाऊ हैं।

जैसा कि सभी क्रियाएं बिट मास्क बनाती हैं जो आंतरिक रूप से लागू होती हैं, आप man chmodसीधे ( विवरणों के लिए देखें) बिटमास्क टाइप कर सकते हैं।

शेल्स्क्रिप्टस्क्रिप्ट के लिए 755 myscript.sh सभी मामलों में कम से कम 95% में सबसे अधिक समझ में आता है।

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