I think your asking how to change users of a specific file or directory as opposed to permissions.
Just in case, changing permissions for an owner is done like this:
Code:
chmod u+rw fileName
Changing the actual owner might look something more like this:
Code:
chown john fileName
Finally, if you need to change the owner
and group, use the following
Code:
chown john:groupName fileName