|
78.
|
|
|
Permissions
|
|
|
|
(no translation yet)
|
|
|
|
Located in
docs/basics/C/basics.xml:339(title)
|
|
79.
|
|
|
In a multi-user environment, security of user and system data is important. Linux has three specific, or distinct, classes:
|
|
|
|
(no translation yet)
|
|
|
|
Located in
docs/basics/C/basics.xml:340(para)
|
|
80.
|
|
|
<emphasis role="strong">r</emphasis> - <emphasis>read</emphasis> permission which grants the ability to read a file.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
docs/basics/C/basics.xml:346(para)
|
|
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)
|