O comando chown é usado para alterar o proprietário e o proprietário do grupo de um arquivo ou diretório. São necessários privilégios de superusuário para usar este comando. A sintaxe do chown parece isso:
chown [owner][:[group]] file...
chown pode alterar o proprietário do arquivo e / ou o proprietário do grupo de arquivos, dependendo do primeiro argumento do comando. Aqui estão alguns exemplos:
chown owner file
exemplo:
chown bob file --> Changes the ownership of the file from its current owner to user bob.
chown owner:group file
exemplo:
chown bob:users file --> Changes the ownership of the file from its current owner to user bob and changes the file group owner to group users.
chown :group file
exemplo:
chown :admins file --> Changes the group owner to the group admins. The file owner is unchanged.
chown owner: file
exemplo:
chown bob: file --> Change the file owner from the current owner to user bob and changes the group owner to the login group of user bob.
Por favor, leia este belo tutorial link . Isso mostra algumas informações sobre usuários, grupos, permissões ...