<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
	<id>https://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Comandos_de_la_terminal%2Fchmod</id>
	<title>Comandos de la terminal/chmod - Historial de revisiones</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Comandos_de_la_terminal%2Fchmod"/>
	<link rel="alternate" type="text/html" href="https://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/chmod&amp;action=history"/>
	<updated>2026-04-07T17:49:58Z</updated>
	<subtitle>Historial de revisiones para esta página en el wiki</subtitle>
	<generator>MediaWiki 1.32.1</generator>
	<entry>
		<id>https://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/chmod&amp;diff=5265&amp;oldid=prev</id>
		<title>Rrc en 23:59 5 mar 2014</title>
		<link rel="alternate" type="text/html" href="https://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/chmod&amp;diff=5265&amp;oldid=prev"/>
		<updated>2014-03-05T23:59:55Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;__NOTOC__&lt;br /&gt;
* [[:#chmod | chmod]]&lt;br /&gt;
&lt;br /&gt;
== chmod ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr ~]$ chmod --help&lt;br /&gt;
Usage: chmod [OPTION]... MODE[,MODE]... FILE...&lt;br /&gt;
  or:  chmod [OPTION]... OCTAL-MODE FILE...&lt;br /&gt;
  or:  chmod [OPTION]... --reference=RFILE FILE...&lt;br /&gt;
Change the mode of each FILE to MODE.&lt;br /&gt;
With --reference, change the mode of each FILE to that of RFILE.&lt;br /&gt;
&lt;br /&gt;
  -c, --changes          like verbose but report only when a change is made&lt;br /&gt;
  -f, --silent, --quiet  suppress most error messages&lt;br /&gt;
  -v, --verbose          output a diagnostic for every file processed&lt;br /&gt;
      --no-preserve-root  do not treat &amp;#039;/&amp;#039; specially (the default)&lt;br /&gt;
      --preserve-root    fail to operate recursively on &amp;#039;/&amp;#039;&lt;br /&gt;
      --reference=RFILE  use RFILE&amp;#039;s mode instead of MODE values&lt;br /&gt;
  -R, --recursive        change files and directories recursively&lt;br /&gt;
      --help     display this help and exit&lt;br /&gt;
      --version  output version information and exit&lt;br /&gt;
&lt;br /&gt;
Each MODE is of the form &amp;#039;[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=][0-7]+&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
Report chmod bugs to bug-coreutils@gnu.org&lt;br /&gt;
GNU coreutils home page: &amp;lt;http://www.gnu.org/software/coreutils/&amp;gt;&lt;br /&gt;
General help using GNU software: &amp;lt;http://www.gnu.org/gethelp/&amp;gt;&lt;br /&gt;
For complete documentation, run: info coreutils &amp;#039;chmod invocation&amp;#039;&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr ~]$ chmod --version&lt;br /&gt;
chmod (GNU coreutils) 8.21&lt;br /&gt;
Copyright (C) 2013 Free Software Foundation, Inc.&lt;br /&gt;
License GPLv3+: GNU GPL version 3 or later &amp;lt;http://gnu.org/licenses/gpl.html&amp;gt;.&lt;br /&gt;
This is free software: you are free to change and redistribute it.&lt;br /&gt;
There is NO WARRANTY, to the extent permitted by law.&lt;br /&gt;
&lt;br /&gt;
Written by David MacKenzie and Jim Meyering.&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rw------- 1 rrc rrc 1359 Nov 16 13:16 typescript&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod a+x typescript &lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rwx--x--x 1 rrc rrc 1359 Nov 16 13:16 typescript*&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod g-x,o-x typescript &lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rwx------ 1 rrc rrc 1359 Nov 16 13:16 typescript*&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod u=rwx,g=rx,o=rx typescript &lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rwxr-xr-x 1 rrc rrc 1359 Nov 16 13:16 typescript&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod -R o-rx Carpeta1/&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -alR Carpeta1&lt;br /&gt;
Carpeta1:&lt;br /&gt;
total 12&lt;br /&gt;
drwxr-x---  3 rrc rrc 4096 Mar  5 11:45 ./&lt;br /&gt;
drwx------ 14 rrc rrc 4096 Mar  5 16:50 ../&lt;br /&gt;
drwxr-x---  3 rrc rrc 4096 Mar  4 12:44 Carpeta2/&lt;br /&gt;
lrwxrwxrwx  1 rrc rrc   11 Mar  5 11:45 ChownPrueba -&amp;gt; ChownPrueba&lt;br /&gt;
&lt;br /&gt;
Carpeta1/Carpeta2:&lt;br /&gt;
total 12&lt;br /&gt;
drwxr-x--- 3 rrc rrc 4096 Mar  4 12:44 ./&lt;br /&gt;
drwxr-x--- 3 rrc rrc 4096 Mar  5 11:45 ../&lt;br /&gt;
drwxr-x--- 2 rrc rrc 4096 Mar  4 12:44 Carpeta3/&lt;br /&gt;
&lt;br /&gt;
Carpeta1/Carpeta2/Carpeta3:&lt;br /&gt;
total 8&lt;br /&gt;
drwxr-x--- 2 rrc rrc 4096 Mar  4 12:44 ./&lt;br /&gt;
drwxr-x--- 3 rrc rrc 4096 Mar  4 12:44 ../&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod 775 Carpeta1&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -ald Carpeta1&lt;br /&gt;
drwxrwxr-x 3 rrc rrc 4096 Mar  5 11:45 Carpeta1/&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rwxr-x--- 1 rrc rrc 1359 Nov 16 13:16 typescript*&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod 1775 typescript &lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rwxrwxr-t 1 rrc rrc 1359 Nov 16 13:16 typescript*&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod 2775 typescript &lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rwxrwsr-x 1 rrc rrc 1359 Nov 16 13:16 typescript*&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod 4775 typescript &lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rwsrwxr-x 1 rrc rrc 1359 Nov 16 13:16 typescript*&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod u-s typescript &lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rwxrwxr-x 1 rrc rrc 1359 Nov 16 13:16 typescript*&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod 2775 typescript &lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rwxrwsr-x 1 rrc rrc 1359 Nov 16 13:16 typescript*&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod g-s typescript &lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rwxrwxr-x 1 rrc rrc 1359 Nov 16 13:16 typescript*&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod 1775 typescript &lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rwxrwxr-t 1 rrc rrc 1359 Nov 16 13:16 typescript*&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod o-s typescript &lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rwxrwxr-t 1 rrc rrc 1359 Nov 16 13:16 typescript*&lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ chmod o-t typescript &lt;br /&gt;
[rrc@Llawyr ComandosDeLaTerminal]$ ls -al typescript &lt;br /&gt;
-rwxrwxr-x 1 rrc rrc 1359 Nov 16 13:16 typescript*&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Comandos de la terminal]]&lt;/div&gt;</summary>
		<author><name>Rrc</name></author>
		
	</entry>
</feed>