“ chmod + x <filename>” ทำอะไรและฉันจะใช้ได้อย่างไร


36

ฉันต้องการเขียน Ubuntu แบบอะนาล็อกของ "แบตช์ไฟล์" (สคริปต์เชลล์) แต่ฉันไม่ทราบวิธีการใช้คำสั่งเพื่อทำให้สคริปต์สามารถทำงานได้ ฉันไม่รู้ว่าจะใช้ที่ไหนดีchmod +x filename


1
ตามหมายเหตุของเว็บไซต์: Linux ไม่ได้ใช้ Batch-files มันใช้เชลล์สคริปต์ เหล่านี้ส่วนใหญ่จะถูกดำเนินการโดย BASH (Bourne Again SHell)
s3lph

@the_Seppi เชลล์เริ่มต้นใน Ubuntu เป็นเส้นประ (Debian Almquist Shell) ไม่ทุบตีแม้ว่าเส้นประและทุบตีจะคล้ายกันและคุณสามารถใช้ทุบตีได้หากคุณต้องการ
Warren Hill

สิ่งนี้อาจไม่ชัดเจน แต่ไม่เคยนอกหัวข้อ ผู้คนคิดว่านี่เป็นการเขียนแบตช์จริงสำหรับ Windows และ DOS หรือไม่? chmodไม่ได้โดดนำไปใช้กับระบบปฏิบัติการเหล่านั้นและ "แฟ้มชุด" อยู่ในคำพูดที่ทำให้ตกใจ OP ที่นี่ (ล่าสุด 2014) ต้องการเขียนและเรียกใช้บางสิ่งที่คล้ายกับไฟล์แบตช์ ต่างจากในระบบปฏิบัติการ Unix ที่มีลักษณะคล้าย Unix ผู้ใช้ Windows (และ DOS) ไม่จำเป็นต้องใช้สิ่งใดchmod +xในการสร้างมันเพื่อให้สามารถเปิดใช้งานสคริปต์ในลักษณะเดียวกับที่เปิดใช้ไบนารีที่สามารถเรียกใช้งานได้ ฉันได้แก้ไขเล็กน้อยเพื่อชี้แจงคำถามและฉันลงคะแนนเพื่อเปิดใหม่
Eliah Kagan

คำตอบ:


37

ในระยะสั้น:

chmod +xในไฟล์ (สคริปต์ของคุณ) เท่านั้นหมายความว่าคุณจะทำให้มันปฏิบัติการได้ คลิกขวาที่สคริปต์ของคุณและเลือกคุณสมบัติ -> สิทธิ์ -> อนุญาตให้เรียกใช้ไฟล์เป็นโปรแกรมทำให้คุณได้ผลลัพธ์เหมือนกับคำสั่งในเทอร์มินัล

หากไฟล์ที่คุณต้องการเปลี่ยนการอนุญาตอยู่ในไดเรกทอรีระบบคุณอาจจำเป็นต้องมีrootดังนี้: (ระวังในขณะที่ใช้sudoคำสั่ง)

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

ยังไม่ชัดเจนสิ่งที่คุณต้องการเก็บถาวรที่นี่ โปรดแก้ไขคำถามของคุณและให้รายละเอียดเพิ่มเติมเกี่ยวกับปัญหาจริง!

คุณสามารถอ้างถึงคำถามนี้สำหรับข้อมูลเพิ่มเติม: chmod u + x 'กับ' chmod + x


ในระยะยาว:

พิมพ์man chmodในหน้าต่างเทอร์มินัล ( Ctrl+ Alt+ T) แล้วคุณจะได้ผลลัพธ์ต่อไปนี้:


ชื่อ: chmod - เปลี่ยนบิตโหมดไฟล์

สรุป

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.

SETUID และ SETGID BITS

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 มีเหตุผลที่คุณวางหน้าคนทั้งหมดที่นี่หรือไม่? 'สั้น ๆ ' ของคุณคือคำตอบที่ฉันต้องการ (อะไรคือ + x ใน chmod?) แต่จากมุมมองของฉัน (อาจไม่รู้) มันไม่ได้สรุปหน้าคนที่คุณวาง
Alex

1
คุณถูกต้องแล้วที่จะชี้ให้อเล็กซ์รู้ว่ามันตลกดี! ฉันเพิ่มหน้าคนทั้งหมดเพื่อความสมบูรณ์เนื่องจากฉันต้องการแบบนั้นถ้าฉันเป็นคนที่มองหาข้อมูล แต่ยังไม่ได้รับ ที่จริงแล้วฉันพบในอดีตว่าหน้าคนจำนวนมากเป็นอย่างนั้นสิ่งที่คุณอธิบายที่นี่ ดีใจที่ฉันสามารถช่วยได้!
v2r

"chmod + x บนไฟล์ (สคริปต์ของคุณ) เท่านั้นหมายถึงว่าคุณจะทำให้มันปฏิบัติการได้" ฉันเดาว่าคุณหมายถึงผู้ใช้ทุกคนสามารถใช้งานได้จริงไหม? นั่นคือวิธีที่ฉันตีความหน้าคนอย่างน้อย chmod u+xจะทำให้สามารถปฏิบัติการได้เฉพาะคุณเท่านั้น
Jim Aho

3

ก่อนอื่นสคริปต์ของคุณต้องประกาศว่าจะใช้ล่ามคนใด คุณทำสิ่งนี้ในบรรทัดแรกของไฟล์ ถ้ามันเป็นสคริปต์เปลือกมันควรจะเป็นหรือ#!/bin/sh#!/bin/bash

ดังนั้นนี่คือสคริปต์ที่เขียนชื่อผู้ใช้ของคุณ: echo-whoami.sh

#!/bin/sh echo $(whoami)

chmod +x echo-whoami.shที่จะทำให้มันปฏิบัติการการใช้งาน ./echo-whoami.shจากนั้นคุณสามารถทำงานได้โดยใช้


3

ไฟล์ชุดและเชลล์สคริปต์เป็นสองแง่ความหมายได้อย่างมีประสิทธิภาพเดียวกันภายใต้ลินุกซ์ ระยะสคริปต์ที่ไกลมากขึ้นมักจะใช้แต่

ไฟล์สคริปต์เชลล์ที่เรียบง่ายที่สุดมีเพียงคำสั่งตามที่คุณพิมพ์ในบรรทัดคำสั่ง (นั่นคือตัวแปลคำสั่ง Bash) ในทางทฤษฎีคุณสามารถแทนที่ล่ามด้วยภาษาใดก็ได้ที่คุณต้องการ (และมีล่ามให้) หากต้องการให้ชัดเจนยิ่งขึ้นขอแนะนำให้คุณเริ่มบรรทัดแรกด้วย

#!/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)

มักจะเป็นค่าที่เหมาะสมของการอนุญาตไฟล์ของคุณ คุณสามารถพิมพ์การกระทำเดียวที่ต่อกันคั่นด้วยเครื่องหมายจุลภาค

ในขณะที่ "ภาษาการกระทำ" นี้น่าสนใจมาก (สังเกตความแตกต่างของตัวดำเนินการ+และตัว=ดำเนินการซึ่งส่งผลให้เกิดผลลัพธ์ที่แตกต่างกันขึ้นอยู่กับการตั้งค่าการอนุญาตก่อนที่คุณจะเปลี่ยน) พวกเขาน่าเบื่อที่จะพิมพ์

เนื่องจากการกระทำทั้งหมดสร้างบิตมาสก์ที่ใช้ภายในคุณสามารถพิมพ์ bitmasks (ดูman chmodรายละเอียด) ได้โดยตรง

สำหรับ shellscript chmod 755 myscript.shเหมาะสมที่สุดอย่างน้อย 95% ของทุกกรณี

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.