When to Stop Testing?
When to Stop Testing?
December 6, 2022
What is Hop Count?
What is Hop Count?
December 20, 2022

December 13, 2022

chmod in Linux

chmod is an abbreviation for change mode, the command is used to change access rights of files and directories.

Permissions are assigned to the three classes of users associated with each file as file's owner, group members and others:

chmod u=rwx, g=rx, o=r bissfile

  • the user can read, write, and execute it,
  • members of your group can read and execute it,
  • others can only read it.

-The letters u, g, and o represent user, group and others.

-The equal sign (=) means set the permission.

-The letters r, w and x stand for read, write and execute.

chmod in Linux
This website uses cookies to improve your experience. By using this website you agree to our Data Privacy Statement
Read more