7

I'm trying to install colordiff in a custom directory because I do not have sudo privileges. I did make the directories hard-coded in the Makefile as stated in the README, but I'm getting this error:

... chown root.root /share/edu-mei/colordiff/1.0.13/etc/colordiffrc chown: changing ownership of `/share/edu-mei/colordiff/1.0.13/etc/colordiffrc': Operation not permitted make: [install] Error 1 (ignored) ... 

Changing this file ownership is not really a problem (probably the reason that the author ignores this). However I'm not familiar with this usage of chown.

The manpage from chown says that the command syntax is:

chown [OPTION]... [OWNER][:[GROUP]] FILE... chown [OPTION]... --reference=RFILE FILE... 

But the command executed is chown root.root $file.

What does the syntax with a dot rather than a colon mean?

3
  • Dot instead of colon is also valid. I think that's about it. Commented Apr 17, 2013 at 12:39
  • The answers below explain the syntax, but this command fails because as non-root, you can't change ownership to root. Commented Apr 17, 2013 at 15:52
  • @depquid that was easy to figure out with the syntax clarified. After all, my question weren't about the error. Commented Apr 17, 2013 at 16:18

2 Answers 2

10

It sets the user and group of $file to root (as in chown OWNER.GROUP FILE...). It's the same as calling chown root:root $file, but an older form.

The period was replaced by a colon, giving chown OWNER:GROUP FILE... as documented, because periods could potentially appear in user/group names.

3
  • 4
    It should be noted for completeness that the reason a colon is used is that it cannot appear in a user or group name, as described here: unix.stackexchange.com/a/6531/1078 Commented Apr 17, 2013 at 23:07
  • 1
    as documented could you give a link? also android seems to use dot and reject colon, which is also unclear why. Commented Apr 23, 2014 at 11:13
  • 2
    @naxa The original question included the documentation for the asker's chmod variant: chown [OPTION]... [OWNER][:[GROUP]] FILE..., which clearly shows only a colon. Android can have one of many different chown variants; Busybox chown is common and supports both . and :. Others may behave differently. Commented Apr 23, 2014 at 12:07
4

"chown user.group file" was the old way to use chown to set both user and group for a file. This notation is now deprecated, and you should use ":" instead, as in "chown user:group file".

"$file" is just shell-variable. Probably you have a script that repeats a command (chown) for a list of filenames. The variable "$file" will contain the filename currently being processed, and will change for each "round" the script iterates, until the list (all the filenames) has been processed (have gotten their owner and group set to root:root).

1
  • $file is my own way to express the filename Commented Apr 17, 2013 at 13:17

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.