Какво прави "chmod +x " и как да го използвам?

Искам да напиша аналог на "пакетния файл" (скрипт на шела) в Ubuntu. Но не знам как да използвам командата chmod +x име на файл, за да направя така, че скриптът да може да бъде стартиран. Не знам и къде да я използвам.

Накратко:

chmod +x върху даден файл (вашия скрипт) означава само, че ще го направите изпълним. Щракването с десния бутон на мишката върху вашия скрипт и избирането на Свойства -> Правомощия -> Да се разреши изпълнението на файла като програма, води до абсолютно същия резултат като командата в терминала.

Ако файлът, на който искате да промените правата, се намира в системната директория, може да се наложи да бъдете root, както е показано по-долу: (бъдете внимателни, докато използвате командата sudo)

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

Също така не е ясно какво точно искате да архивирате тук. Моля, редактирайте въпроса си и дайте малко повече подробности за действителния проблем!

Можете също така да се обърнете към този въпрос за повече информация: chmod u+x' срещу 'chmod +x


In Long:

Напишете man chmod в терминален прозорец (Ctrl+Alt+T) и ще получите следния изход:


НАИМЕНОВАНИЕ: 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.

SETUID И SETGID БИТОВЕ

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]))+'.
Коментари (3)

Първо, скриптът ви трябва да декларира кой интерпретатор да използва. Това се прави на първия ред на файла. Ако става дума за скрипт с обвивка, това трябва да бъде #!/bin/sh или #!/bin/bash.

Ето един скрипт, който изписва вашето потребителско име: echo-whoami.sh

#!/bin/sh echo $(whoami)

За да го направите изпълним, използвайте chmod +x echo-whoami.sh. След това можете да го стартирате, като използвате ./echo-whoami.sh.

Коментари (0)

Партиен файл и скрипт на шел са два термина, които означават едно и също под Linux. Терминът скрипт обаче се използва много по-често.

Най-простият файл с шел скрипт просто съдържа команди, както бихте ги въвели от командния ред (т.е. от интерпретатора на команди 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)

обикновено са разумни стойности на правата на файловете ви. Можете да въведете отделните действия слято, разделени със запетая.

Въпреки че този "език на действията" е много увлекателен (обърнете внимание на разликата между операторите + и `=``, които водят до различни резултати в зависимост от настройката на разрешенията, преди да ги промените), те са досадни за въвеждане.

Тъй като всички действия създават битови маски, които се прилагат вътрешно, можете да въведете битовите маски (вижте man chmod за подробности) и директно.

За шелскрипт chmod 755 myscript.sh има най-голям смисъл в поне 95 % от всички случаи.

Коментари (0)