Most users know how to change the owner of a file using:

# chown <username> <filename>

and changing the group:

# chgrp <groupname> <filename>

You can combine the 2 commands into one and change the group and owner at the same time:

# chown <username>.<groupname> <filename>

Note the period between <username> and <groupname>.