Cosa fa "chmod + x <nomefile>" e come si usa?


36

Voglio scrivere l'analogo Ubuntu di un "file batch" (uno script di shell). Ma non so come usare il comando per farlo in modo che lo script possa essere eseguito. Né so dove usarlo.chmod +x filename


1
Come nota sul sito: Linux non usa file batch. Utilizza script di shell. Questi sono per lo più eseguiti da BASH (Bourne Again SHell).
s3lph

@the_Seppi la shell di default in Ubuntu è dash (la Debian Almquist Shell) non bash sebbene dash e bash siano simili e puoi usare bash se vuoi.
Warren Hill,

Questo potrebbe non essere chiaro, ma non è mai stato fuori tema. La gente pensava che si trattasse di scrivere file batch effettivi per Windows e DOS? chmodnon si applica davvero a quei sistemi operativi e "file batch" era tra virgolette . L'OP qui (visto per l'ultima volta nel 2014) voleva scrivere ed eseguire qualcosa di simile a un file batch. A differenza dei sistemi operativi simili a Unix, gli utenti di Windows (e DOS) non devono usare nulla di simile chmod +xper farlo in modo da poter lanciare i propri script nello stesso modo in cui avviano file binari eseguibili. Ho modificato un po 'per chiarire la domanda e sto votando per riaprire.
Eliah Kagan,

Risposte:


38

In breve:

chmod +xsu un file (il tuo script) significa solo che lo renderai eseguibile. Fai clic con il pulsante destro del mouse sullo script e scegli Proprietà -> Autorizzazioni -> Consenti l'esecuzione del file come programma , ti lascia con lo stesso esatto risultato del comando nel terminale.

Se un file su cui si desidera modificare le autorizzazioni si trova nella directory dei sistemi, potrebbe essere necessario essere in questo rootmodo: (fare attenzione, mentre si utilizza il sudocomando)

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

Inoltre non è chiaro cosa esattamente si desidera archiviare qui. Modifica la tua domanda e fornisci maggiori dettagli sul problema reale!

Puoi anche fare riferimento a questa domanda, per maggiori informazioni: chmod u + x 'versus' chmod + x


In lungo:

Digita man chmoduna finestra terminale ( Ctrl+ Alt+ T) e otterrai il seguente output:


NAME: chmod - cambia i bit della modalità file

SINOSSI

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

DESCRIZIONE

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 E 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.

OPZIONI

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]))+'.

Questa risposta è divertente per me, perché ho letto prima la pagina man, prima di venire qui perché la pagina man non dice nulla su + x. C'è un motivo per cui hai incollato l'intera pagina man qui? La tua "in breve" è stata la risposta di cui avevo bisogno (cos'è + x su chmod?), Ma dal mio punto di vista (forse ignorante), non è un riassunto della pagina man che hai incollato.
Alex

1
Hai perfettamente ragione a sottolineare questo Alex, è un po 'divertente! Ho aggiunto l'intera pagina man per il completamento, poiché la preferirei in questo modo se dovessi essere io a cercare informazioni, non ancora ottenute. In realtà ho scoperto in passato che molte pagine man sono così, ciò che descrivi qui. Sono contento di essere stato d'aiuto!
v2r

"chmod + x su un file (il tuo script) significa solo che lo renderai eseguibile" Immagino che intendi eseguibile per tutti gli utenti, giusto? È così che interpreto almeno la pagina man. chmod u+xlo renderebbe eseguibile solo a te
Jim Aho il

3

Innanzitutto, lo script deve dichiarare quale interprete utilizzare. Lo fai nella prima riga del file. Se è uno script di shell, dovrebbe essere #!/bin/sho #!/bin/bash.

Quindi ecco uno script che scrive il tuo nome utente: echo-whoami.sh

#!/bin/sh echo $(whoami)

Per renderlo eseguibile, utilizzare chmod +x echo-whoami.sh. Quindi puoi eseguirlo usando ./echo-whoami.sh.


3

Un file batch e uno script di shell sono due termini che significano effettivamente lo stesso in Linux. Tuttavia, il termine script è molto più spesso usato .

Il più semplice file di script di shell contiene solo i comandi mentre li digiti sulla riga di comando (ovvero, l'interprete dei comandi di Bash). In teoria puoi persino sostituire l'interprete con qualsiasi lingua ti piaccia (e avere un interprete per). Per essere più espliciti, si consiglia di iniziare la prima riga con

#!/bin/sh (se non vuoi la massima portabilità con i sistemi legacy)

o

#!/bin/bash (se vuoi alcune funzionalità extra, probabilmente non ti interessa oggi)

Dopo questa riga inserisci i tuoi comandi, uno su ogni riga. Ci sono molti costrutti extra oltre lo scopo di queste domande, vedi man basho http://www.tldp.org/LDP/Bash-Beginners-Guide/Bash-Beginners-Guide.pdf (per principianti) o http: // www .tldp.org / LDP / abs / abs-guide.pdf (per domande più avanzate).

Per eseguire effettivamente lo script, ci sono due requisiti: in primo luogo, il processo dell'interprete deve leggere il file , e in secondo luogo controlla se è contrassegnato come eseguibile . Per motivi di praticità è anche utile poter scrivere sul tuo script (quindi è possibile apportare modifiche o correzioni).

Supponendo inoltre che si desidera che anche i membri del team e altri possano eseguire (e vedere) il proprio script, ma che non si desidera che lo manipolino, la combinazione di

  • eseguire diritti per tutti ( a+xo +x, come apredefinito),
  • diritti di lettura per tutti ( a+ro +r, come aè nuovamente predefinito),
  • permessi di scrittura solo per te ( u=w)

sono di solito valori sensibili delle autorizzazioni dei file. È possibile digitare le singole azioni concatenate, separate da una virgola.

Sebbene questo "linguaggio d'azione" sia molto affascinante (notare la differenza tra l' operatore +e l' =operatore che determina risultati diversi a seconda dell'impostazione dell'autorizzazione prima di modificarli), sono noiosi da digitare.

Poiché tutte le azioni creano maschere di bit che vengono applicate internamente, è possibile digitare direttamente le maschere di bit (vedere man chmodper i dettagli).

Per uno shellscript chmod 755 myscript.sh ha più senso in almeno il 95% di tutti i casi.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.