Chown Command — ((link))

: Displays a diagnostic message for every file processed. -c

: If you leave the owner field empty but include the colon and group, only the group ownership changes. Example: chown :staff /u (Changes group of /u to "staff").

: The username or numeric User ID (UID) of the new owner. chown command

: To change only the owner of a file, provide the username.

: Applies changes to all files and subdirectories within a directory. -v : Displays a diagnostic message for every file processed

In most Linux distributions, only the can use chown to change the owner of a file. This prevents regular users from "giving away" files to others to bypass disk quotas or malicious activities. It is important to distinguish chown from chmod : Linux file permissions explained - Red Hat

: Similar to verbose, but only reports when a change is actually made. -f Silent/Force : Suppresses most error messages. -h : The username or numeric User ID (UID) of the new owner

: The group name or numeric Group ID (GID) of the new group (optional). FILE(S) : The target file or directory you wish to modify. Primary Use Cases and Examples