GNU bug report logs - #6245
cp - copy files and directories, ls -Rld, chmod

Previous Next

Package: coreutils;

Reported by: "estonoeshawaii <at> yahoo.com" <estonoeshawaii <at> yahoo.com>

Date: Sat, 22 May 2010 07:27:01 UTC

Severity: normal

Done: Bob Proulx <bob <at> proulx.com>

Bug is archived. No further changes may be made.

Full log


Message #10 received at 6245-done <at> debbugs.gnu.org (full text, mbox):

From: Bob Proulx <bob <at> proulx.com>
To: "estonoeshawaii <at> yahoo.com" <estonoeshawaii <at> yahoo.com>
Cc: 6245-done <at> debbugs.gnu.org
Subject: Re: bug#6245: cp - copy files and directories, ls -Rld, chmod
Date: Sat, 22 May 2010 13:34:00 -0600
estonoeshawaii <at> yahoo.com wrote:
> course), because It does not preserve ownership (except if you are
> root) . The problem is that it doesn't tell you anything when it
> doesn't do it or that It shouldn't be supposed to preserve
> ownership.

This is related to this FAQ entry.  It explains why only root can
chown files.

  http://www.gnu.org/software/coreutils/faq/#Why-can-only-root-chown-files_003f

The 'cp -a' option says:

  `-a'
  `--archive'
      Preserve as much as possible of the structure and attributes of the
      original files in the copy ...

It is not possible to preserve the ownership of a file unless you are
root.  Therefore cp is preserving "as much as possible".

> 2. Many commands act recursively on a directory with an -R option
> that affects the directory and all the files it contains.
> 
> There should be a
> 
> ls -ld -R
> 
> command that lists in detail the directory and its contents to
> quickly check results in one step.

The -R option is exactly the option you are asking for except you have
explicitly blocked its action by adding the -d option.

  `-R'
  `--recursive'
       List the contents of all directories recursively.

This does what you intend.

  `-d'
  `--directory'
       List just the names of directories, as with other types of files,
       rather than listing their contents.

But you included the -d option that prevents it from recursing.

> 3. If we have:
> 
> drwx------ 2 user2 user2  392 2010-01-11 12:04 /home/user2/directory
> 
> user1 <at> mypc:~$ su  -c 'chmod -R 644 /home/user2/directory' user2
> 
> doesn't work. You need to change the mode of the directory first and
> then you can apply a recursive chmod. Is this a bug?

Mode 644 isn't what you want for directories.  That would remove the
eXecute bit.  The execute permission on a directory allows access to
list the contents of the directory.  If that permission is removed
then the chmod command will not have access to list the directory
contents.

You probably want something that only affects files.  Use find for
that instead.  Try something like this:

  su -c 'find /home/user2/directory -type f -exec chmod 644 {} +' user2

> Many thanx for many things.

When reporting bugs (or at least when reporting what you are thinking
is a bug :-) it is best to report only one item at a time.  Mixing
several items together causes all of them to be treated together as a
group even if they are individually separate.

Since none of these were bugs I am going to go ahead and mark it as
being closed in the bug tracker.  Feel free to follow-up normally if
you have more information.  In the future for general help with the
utilities you might want to ask general help questions in the
help-gnu-utils <at> gnu.org mailing list.

Bob




This bug report was last modified 15 years and 82 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.