How to Change File Ownership & Groups in Linux

Change File Ownershipgroups Linux
Follow Us:
2.7k
16.4k
11.7k
173
4.1k

File ownership and groups for files are fundamental to the Linux operating system. Every file in Linux is managed by a specific user and a specific group.

Figure Out Who Owns the File, Then Use Either chown or chgrp

Display ownership and group information using the following command:

ls -l file.txt
-rw-rw-r-- 1 root www-data 0 Feb 25 15:51 file.txt

This file is owned by the

root user and belongs to the www-data group.

Changing the Ownership of a File Using chown

You can change the ownership of a specific file using the chown command. For security purposes only, the root user or members of the sudo group may transfer ownership of a file.

To change the ownership of a file:

chown robert file.txt

ls -l file.txt
-rw-rw-r-- 1 robert www-data 0 Feb 25 15:51 file.txt

The file file.txt is now owned by

Robert. By default, chown follows symbolic links and changes the owner of the file pointed to by the symbolic link. If you wish to change ownership of all files inside a directory, you can use the -R option.

chown -R user directory/

Changing the Group Ownership of a File 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

You can then change the group ownership of a specific file using the chgrp command:

chgrp webdev file.txt

ls -l file.txt
-rw-rw-r-- 1 robert webdev 0 Feb 25 15:51 file.txt

The file file.txt now belongs to the

webdev group.

Changing Both the Owner and the Group Using chown

You can change both the owner and group of a file using just the chown command.

chown tito:editors file.txt

ls -l file.txt
-rw-rw-r-- 1 tito editors 0 Feb 25 15:51 file.txt

The file file.txt is now owned by Titoand belongs to the

editors group.