Controlling access to files and directories really just boils down to ensuring that the proper users can access their own files and directories and that each file and directory has permissions set in such a way that only authorized users can access them. The chown utility covers the first part of this equation.
One unique thing about chown is that you must have sudo privileges to use it, even if you're working with your own files in your own directory. You can use it to change the user of a file or directory, the group that's associated with a file or directory, or both at the same time.
First, let's say that you own the perm_demo.txt file and that you want to change both the user and group association to that of another user. In this case, I'll change the file ownership from me to maggie:
[donnie@localhost...