≡ Menu

12 Linux Chown Command Examples to Change Owner and Group

The concept of owner and groups for files is fundamental to Linux. Every file is associated with an owner and a group. You can use chown and chgrp commands to change the owner or the group of a particular file or directory.

In this article, we will discuss the ‘chown’ command as it covers most part of the ‘chgrp’ command also.

Even if you already know this command, probably one of the examples mentioned below might be new to you.

1. Change the owner of a file

# ls -lart tmpfile
-rw-r--r-- 1 himanshu family 0 2012-05-22 20:03 tmpfile

# chown root tmpfile

# ls -l tmpfile
-rw-r--r-- 1 root family 0 2012-05-22 20:03 tmpfile

So we see that the owner of the file was changed from ‘himanshu’ to ‘root’.

2. Change the group of a file

Through the chown command, the group (that a file belongs to) can also be changed.

# ls -l tmpfile
-rw-r--r-- 1 himanshu family 0 2012-05-22 20:03 tmpfile

# chown :friends tmpfile

# ls -l tmpfile
-rw-r--r-- 1 himanshu friends 0 2012-05-22 20:03 tmpfile

If you observe closely, the group of the file changed from ‘family’ to ‘friends’. So we see that by just adding a ‘:’ followed by the new group name, the group of the file can be changed.

3. Change both owner and the group

# ls -l tmpfile
-rw-r--r-- 1 root family 0 2012-05-22 20:03 tmpfile

# chown himanshu:friends tmpfile

# ls -l tmpfile
-rw-r--r-- 1 himanshu friends 0 2012-05-22 20:03 tmpfile

So we see that using the syntax ‘<newOwner>:<newGroup>’, the owner as well as group can be changed in one go.

4. Using chown command on symbolic link file

Here is a symbolic link :

# ls -l tmpfile_symlnk
lrwxrwxrwx 1 himanshu family 7 2012-05-22 20:03 tmpfile_symlnk -> tmpfile

So we see that the symbolic link ‘tmpfile_symlink’ links to the file ‘tmpfile’.

Lets see what happens if chown command is issued on a symbolic link:

# chown root:friends tmpfile_symlnk

# ls -l tmpfile_symlnk
lrwxrwxrwx 1 himanshu family 7 2012-05-22 20:03 tmpfile_symlnk -> tmpfile

# ls -l tmpfile
-rw-r--r-- 1 root friends 0 2012-05-22 20:03 tmpfile

When the chown command was issued on symbolic link to change the owner as well as the group then its the referent of the symbolic link ie ‘tmpfile’ whose owner and group got changed. This is the default behavior of the chown command. Also, there exists a flag ‘–dereference’ for the same.

5. Using chown command to forcefully change the owner/group of symbolic file.

Using flag ‘-h’, you can forcefully change the owner or group of a symbolic link as shown below.

# ls -l tmpfile_symlnk
lrwxrwxrwx 1 himanshu family 7 2012-05-22 20:03 tmpfile_symlnk -> tmpfile

# chown -h root:friends tmpfile_symlnk

# ls -l tmpfile_symlnk
lrwxrwxrwx 1 root friends 7 2012-05-22 20:03 tmpfile_symlnk -> tmpfile

6. Change owner only if a file is owned by a particular user

Using chown “–from” flag, you can change the owner of a file, only if that file is already owned by a particular owner.

# ls -l tmpfile
-rw-r--r-- 1 root friends 0 2012-05-22 20:03 tmpfile

# chown --from=guest himanshu tmpfile

# ls -l tmpfile
-rw-r--r-- 1 root friends 0 2012-05-22 20:03 tmpfile

# chown --from=root himanshu tmpfile

# ls -l tmpfile
-rw-r--r-- 1 himanshu friends 0 2012-05-22 20:03 tmpfile
  • In the example above, we verified that the original owner/group of the file ‘tmpfile’ was root/friends.
  • Next we used the ‘–from’ flag to change the owner to ‘himanshu’ but only if the existing owner is ‘guest’.
  • Now, as the existing owner was not ‘guest’. So, the command failed to change the owner of the file.
  • Next we tried to change the owner if the existing owner is ‘root’ (which was true) and this time command was successful and the owner was changed to ‘himanshu’.

On a related note, if you want to change the permission of a file, you should use chmod command.

If you are a beginner, you should start by reading the basics of file permissions.

7. Change group only if a file already belongs to a certain group

Here also the flag ‘–from’ is used but in the following way:

# ls -l tmpfile
-rw-r--r-- 1 himanshu friends 0 2012-05-22 20:03 tmpfile

# chown --from=:friends :family tmpfile

# ls -l tmpfile
-rw-r--r-- 1 himanshu family 0 2012-05-22 20:03 tmpfile

Since the file ‘tmpfile’ actually belonged to group ‘friends’ so the condition was correct and the command was successful.

So we see that by using the flag ‘–from=:<conditional-group-name>’ we can change the group under a particular condition.

NOTE: By following the template ‘–from=<conditional-owner-name>:<conditional-group-name>’, condition on both the owner and group can be applied.

8. Copy the owner/group settings from one file to another

This is possible by using the ‘–reference’ flag.

# ls -l file
-rwxr-xr-x 1 himanshu family 8968 2012-04-09 07:10 file

# ls -l tmpfile
-rw-r--r-- 1 root friends 0 2012-05-22 20:03 tmpfile

# chown --reference=file tmpfile

# ls -l tmpfile
-rw-r--r-- 1 himanshu family 0 2012-05-22 20:03 tmpfile

In the above example, we first checked the owner/group of the reference-file ‘file’ and then checked the owner/group of the target-file ‘tmpfile’. Both were different.  Then we used the chown command with the ‘–reference’ option to apply the owner/group settings from the reference file to the target file. The command was successful and the owner/group settings of ‘tmpfile’ were made similar to the ‘file’.

9. Change the owner/group of the files by traveling the directories recursively

This is made possible by the ‘-R’ option.

# ls -l linux/linuxKernel
-rw-r--r-- 1 root friends 0 2012-05-22 21:52 linux/linuxKernel

# ls -l linux/ubuntu/ub10
-rw-r--r-- 1 root friends 0 2012-05-22 21:52 linux/ubuntu/ub10

# ls -l linux/redhat/rh7
-rw-r--r-- 1 root friends 0 2012-05-22 21:52 linux/redhat/rh7

# chown -R himanshu:family linux/

# ls -l linux/redhat/rh7
-rw-r--r-- 1 himanshu family 0 2012-05-22 21:52 linux/redhat/rh7

# ls -l linux/ubuntu/ub10
-rw-r--r-- 1 himanshu family 0 2012-05-22 21:52 linux/ubuntu/ub10

# ls -l linux/linuxKernel
-rw-r--r-- 1 himanshu family 0 2012-05-22 21:52 linux/linuxKernel

So we see that after checking the owner/group of all the files in the directory ‘linux’ and its two sub-directories ‘ubuntu’ and ‘redhat’.  We issued the chown command with the ‘-R’ option to change both the owner and group. The command was successful and owner/group of all the files was changed successfully.

10. Using chown command on a symbolic link directory

Lets see what happens if we issue the ‘chown’ command to recursively change the owner/group of files in a directory that is a symbolic link to some other directory.

Here is a symbolic link directory ‘linux_symlnk’ that links to the directory ‘linux’ (already used in example ‘9’ above) :

$ ls -l linux_symlnk
lrwxrwxrwx 1 himanshu family 6 2012-05-22 22:02 linux_symlnk -> linux/

Now, lets change the owner (from himanshu to root) of this symbolic link directory recursively :

# chown -R root:friends linux_symlnk

# ls -l linux_symlnk/
-rw-r--r-- 1 himanshu friends    0 2012-05-22 21:52 linuxKernel
drwxr-xr-x 2 himanshu friends 4096 2012-05-22 21:52 redhat
drwxr-xr-x 2 himanshu friends 4096 2012-05-22 21:52 ubuntu

In the ouput above we see that the owner of the files and directories was not changed. This is because by default the ‘chown’ command cannot traverse a symbolic link. This is the default behavior but there is also a flag ‘-P’ for this.

11. Using chown to forcefully change the owner/group of a symbolic link directory recursively

This can be achieved by using the flag -H

# chown -R -H guest:family linux_symlnk

# ls -l linux_symlnk/
total 8
-rw-r--r-- 1 guest family    0 2012-05-22 21:52 linuxKernel
drwxr-xr-x 2 guest family 4096 2012-05-22 21:52 redhat
drwxr-xr-x 2 guest family 4096 2012-05-22 21:52 ubuntu

So we see that by using the -H flag, the owner/group of all the files/folder were changed.

12. List all the changes made by the chown command

Use the verbose option -v, which will display whether the ownership of the file was changed or retained as shown below.

# chown -v -R guest:friends linux
changed ownership of `linux/redhat/rh7' to guest:friends
changed ownership of `linux/redhat' retained to guest:friends
ownership of `linux/redhat_sym' retained as guest:friends
ownership of `linux/ubuntu_sym' retained as guest:friends
changed ownership of `linux/linuxKernel' to guest:friends
changed ownership of `linux/ubuntu/ub10' to guest:friends
ownership of `linux/ubuntu' retained as guest:friends
ownership of `linux' retained as guest:friends
Add your comment

If you enjoyed this article, you might also like..

  1. 50 Linux Sysadmin Tutorials
  2. 50 Most Frequently Used Linux Commands (With Examples)
  3. Top 25 Best Linux Performance Monitoring and Debugging Tools
  4. Mommy, I found it! – 15 Practical Linux Find Command Examples
  5. Linux 101 Hacks 2nd Edition eBook Linux 101 Hacks Book

Bash 101 Hacks Book Sed and Awk 101 Hacks Book Nagios Core 3 Book Vim 101 Hacks Book

Comments on this entry are closed.

  • Rob June 18, 2012, 2:55 am

    quite a lot of this I already knew, but a little bit not. Nice & concise article as usual. Keep it up!

  • Joe June 18, 2012, 3:38 am

    Good refresher !!
    Thanks.

  • Jonathan June 18, 2012, 8:30 am

    Great thank you, very useful!

  • Jalal Hajigholamali June 18, 2012, 10:12 am

    Hi,

    Thanks, i sent it to my LPI1C students…

  • angrek June 18, 2012, 5:49 pm

    Nice post. Probably the only thing I’d say might be missing would be the changing of both user and group usage where you want both to be the same value.

    Rather than:
    # chown himanshu:friends tmpfile

    You could use:
    # chown friends: tempfile

  • Ashok June 19, 2012, 11:54 pm

    Hi HIMANSHU, I really impressed with this article. I never thought that ‘chown’ will have so many options 🙂 Good job !!

    I have written a post to reset the permission of installed RPM packages. This will be useful to revert the RPM permissions back to its default.

    http://ashok-linux-tips.blogspot.com/2011/12/how-to-reset-permissions-of-installed.html

  • Anonymous June 27, 2012, 1:09 am

    Very Good article, very informative.

  • Ray_GTI-R October 11, 2012, 5:17 pm

    The sinlge most powerful command I’ve use yet … chown -R name1:name2 folder1/
    which, modified to my needs, unravelled a totally messed-up BOINC legacy version install.

  • Mustafa October 17, 2012, 12:18 am

    Thank you very much!!

  • Vimal Rathinasamy (@valiantvimal) November 12, 2012, 2:22 am

    This article is very useful..!!!

  • Natasha January 6, 2013, 5:39 pm

    Wow i love you. this is so much help!!! so much better than the man page!

  • manzoor March 25, 2014, 3:16 am

    thanx a lot

  • Mike August 6, 2014, 11:15 pm

    Excellent post! Very concise and clearly laid out.
    Thank you so much for taking the time to put it together. I found your page by searching for “chown replace user” which led me to the –from option, which I had not known about before.

  • Samitha January 9, 2015, 9:13 am

    Thanks a lot. Excellent post.

  • Elijah February 3, 2015, 7:07 am

    Nice and clear article however, can you post in additional information regarding troubleshooting? In my particular case I’m logged in as root but am unable to change the owner of the file from ‘root’ to ‘tomcat’. I’ve tried several of the examples above but none are taking and no error messaging appears either.

  • sreejith March 6, 2015, 4:53 am

    Good work..

  • Siddharth November 19, 2015, 5:22 am

    Very informative post. Well done !!

  • kalyan January 25, 2016, 10:58 am

    Hello Sir,
    i have a dought on chmod & chown.
    what is the main purpose of CHOWN (change owner of a file)
    i can change the owner from normal user to Root (to provide access) only. Why cant i use chmod to give the access to distinguish for root & Normal user.
    ultimate aspect is to provide access to user to READ/WRITE file or Directory only right!!
    Please conclude me ,, any other way of using it,reply me to “nlkalyan.434@gmail.com”

  • Anonymous April 29, 2016, 9:25 am

    Thanks u big big!

  • Md. Saidur Rahman January 1, 2017, 3:49 pm

    It is possible that one file/directory has two or more owner?

  • santosh molkire February 7, 2017, 9:34 am

    which command can be used to change the owner and group of particular subdirectories and files under that in one go