|
81.
|
|
|
<emphasis role="strong">w</emphasis> - <emphasis>write</emphasis> permission which grants the ability to modify a file.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
docs/basics/C/basics.xml:352(para)
|
|
82.
|
|
|
<emphasis role="strong">x</emphasis> - <emphasis>execute</emphasis> permission which grants the ability to execute a file.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
docs/basics/C/basics.xml:358(para)
|
|
83.
|
|
|
The list above shows the symbolic notation of each permission in <emphasis role="strong">bold</emphasis> text. Each permission also has an octal notation:
|
|
|
|
(no translation yet)
|
|
|
|
Located in
docs/basics/C/basics.xml:364(para)
|
|
84.
|
|
|
<emphasis role="strong">r</emphasis> - <emphasis>4</emphasis>
|
|
|
|
(no translation yet)
|
|
|
|
Located in
docs/basics/C/basics.xml:370(para)
|
|
85.
|
|
|
<emphasis role="strong">w</emphasis> - <emphasis>2</emphasis>
|
|
|
|
(no translation yet)
|
|
|
|
Located in
docs/basics/C/basics.xml:375(para)
|
|
86.
|
|
|
<emphasis role="strong">x</emphasis> - <emphasis>1</emphasis>
|
|
|
|
(no translation yet)
|
|
|
|
Located in
docs/basics/C/basics.xml:380(para)
|
|
87.
|
|
|
Permissions Example
|
|
|
|
(no translation yet)
|
|
|
|
Located in
docs/basics/C/basics.xml:386(title)
|
|
88.
|
|
|
To view permissions, type <screen>ls -l ~/</screen> which will output a list of the directories and files in the current user's home directory. For example: <screen>
drwxr-xr-x 2 username usergroup 4096 2009-12-17 11:10 Documents
</screen> The first column, which contains <emphasis role="strong">drwxr-xr-x</emphasis>, can be interpreted as follows:
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
docs/basics/C/basics.xml:387(para)
|
|
89.
|
|
|
File Type
|
|
|
|
(no translation yet)
|
|
|
|
Located in
docs/basics/C/basics.xml:406(entry)
|
|
90.
|
|
|
User Permissions
|
|
|
|
(no translation yet)
|
|
|
|
Located in
docs/basics/C/basics.xml:407(entry)
|