How to change the ownership of a file/directory – Unix/Linux

The owners of a file/dir under Linux are lisred below:
1, Owner
2, Group
3, Others

You can change the ownership of a file/dir by using the ‘chown’ command.
Syntax:

# chown newowner file/dir 

Example:

[root@localhost ~]# touch crybit
[root@localhost ~]# ll crybit
-rw-r--r--. 1 root root 0 Feb  1 05:01 crybit
-----
[root@localhost ~]# chown crybit crybit
[root@localhost ~]# ll crybit
-rw-r--r--. 1 crybit root 0 Feb  1 05:01 crybit

Changed the ownership from root to user crybit.

How to change the ownership recursively?
Use the switch ‘R’ to do the ownership change recursively.
Example:

[root@localhost ~]# mkdir dir
[root@localhost ~]# cd dir/
[root@localhost dir]# touch a{1..5}.txt
[root@localhost dir]# ll
total 0
-rw-r--r--. 1 root root 0 Feb  1 05:09 a1.txt
-rw-r--r--. 1 root root 0 Feb  1 05:09 a2.txt
-rw-r--r--. 1 root root 0 Feb  1 05:09 a3.txt
-rw-r--r--. 1 root root 0 Feb  1 05:09 a4.txt
-rw-r--r--. 1 root root 0 Feb  1 05:09 a5.txt

Change the ownership recursively by using the switch ‘R’

[root@localhost dir]# cd ..
[root@localhost ~]# chown -R crybit dir/
[root@localhost ~]# cd -
/root/dir
[root@localhost dir]# ll
total 0
-rw-r--r--. 1 crybit root 0 Feb  1 05:09 a1.txt
-rw-r--r--. 1 crybit root 0 Feb  1 05:09 a2.txt
-rw-r--r--. 1 crybit root 0 Feb  1 05:09 a3.txt
-rw-r--r--. 1 crybit root 0 Feb  1 05:09 a4.txt
-rw-r--r--. 1 crybit root 0 Feb  1 05:09 a5.txt

That’s it!! 🙂

Related Links:
chgrp, groupdel, groupmems, groupmod, useradd , usermod .
More
ls, head, tail, top, ps, find, crontab

Post navigation

Arunlal A

Senior System Developer at Zeta. Linux lover. Traveller. Let's connect! Whether you're a seasoned DevOps pro or just starting your journey, I'm always eager to engage with like-minded individuals. Follow my blog for regular updates, connect on social media, and let's embark on this DevOps adventure together! Happy coding and deploying!

5 thoughts on “How to change the ownership of a file/directory – Unix/Linux

Leave a Reply

Your email address will not be published. Required fields are marked *