Change File Ownership in Ubuntu

chown allows us to change the user and/or group ownership of a given file, directory, or symbolic link. chown takes the following form: chown [OPTIONS] USER[:GROUP] FILE(s) To recursively operate on all files and directories under the given directory, use the -R (--recursive) option. chown -R USER:GROUP DIRECTORY To change the ownership of the symlink itself, use the -h option. Helpful Website