សិទ្ធិ

In a multi-user environment, security of user and system data is important. Linux™ has three distinct classes:

  • r - read permission grants the ability to read a file.

  • w - write permission grants the ability to modify a file.

  • x - execute permission grants the ability to execute a file.

The list above shows the symbolic notation of each permission in bold text. Each permission also has an octal notation (is represented by digits from 0 to 7):

  • r -

  • w -

  • x -

គំរូ​សិទ្ធិ

To view permissions, open a terminal by going to K menuApplicationsSystemTerminal (Konsole) and then type

ls -l ~/

This will output a list of the directories and files in the current user's home directory. For example:

drwxr-xr-x 2 username usergroup 4096 2009-12-17 11:10 Documents

The first column, which contains drwxr-xr-x, can be interpreted as follows:

ប្រភេទ​ឯកសារសិទ្ធិ​អ្នក​ប្រើសិទ្ធិ​ក្រុមសិទ្ធិ​ផ្សេង​ទៀត
d - directory rwx - read, write, and execute permissions for the user r-x - read and execute permissions for the group r-x - read and execute permissions for all others

គោល​ប្រាំបី​ទៅ​ជា​សង្ខេប​ដែល​មាន​និមិត្ត​សញ្ញា

គោល​ប្រាំបីជា​និមិត្ត​សញ្ញាសេចក្តី​ពិពណ៌នា
0---no permissions
1--xexecute only
2-w-write only
៣ (២+១)-wxwrite and execute
4r--read only
៥ (៤+១)r-xread and execute
៦ (៤+២)rw-read and write
៧ (៤+២+១)rwxread, write, and execute