change the permissions on a file/directory;
e.g., who is allowed to view, edit, delete,
execute, or reside in a file/directory.
You can view the existing permissions of a file
or directory by using
ls -l filename.

The commands
(1) chmod 400 filename
(2) chmod 644 filename
(3) chmod 755 directoryname
are often used.
(1) makes the file readable only by
the file's owner, and not writeable
(editable, removeable) by anyone.
(2) makes the file readable and writeable by
the file's owner, and merely readable by everyone else.
(3) makes a directory open to everyone, but
only writeable (adding/deleting files) by its owner.
Each of the three digits is either 0 or the sum
of the rwx permissions, where
readable=4, writeable=2, executable/resideable=1.
See the manual page for chmod.