File ownership & groups in linux
File concept
Every file in Linux is managed by a specific user and a specific group.
1. Display ownership and group information:
This file is owned by the root user and belongs to the www-data group.
2. Change the ownership of a file by using chown
Important: ONLY root user or members of the sudo group
may transfer ownership of a file
3. Changing the Group Ownership of a file by using chgrp
All users on the system belong to at least one group. You can find out which groups you belong to using the following command: groups username
Change the group ownership of a specific file using the chgrp command
The file file.txt now belongs to the webdev
group.
Most important:
Change both the owner and group of a file using just the chown
command
Last updated