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?

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

2 Answers2

11

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.

mrb
  • 10,288
  • 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: http://unix.stackexchange.com/a/6531/1078 – camh Apr 17 '13 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. – n611x007 Apr 23 '14 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. – mrb Apr 23 '14 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).