'cp' command: preserve group ownership


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers 'cp' command: preserve group ownership
# 1  
Old 01-03-2013
'cp' command: preserve group ownership

Hi,

Here is the scenario:

This file exists, with this ownership and group:
Code:
       -rw-rw-r--  1 picard starfleet   4 Jan  3 00:33 myfile.txt

Output of the 'id' command for user picard is:
Code:
       $ id picard
       uid=6392(picard) gid=723(human) groups=723(human),918(starfleet)

Output of the 'id' command for user worf is:
Code:
       $ id worf
       uid=7413(worf) gid=737(klingon) groups=737(klingon),918(starfleet)

When worf runs:
Code:
       $ /bin/cp -p myfile.txt mycopy.txt

the ownership and group look like:
Code:
       -rw-rw-r--  1 worf   klingon      4 Jan  3 00:33 mycopy.txt

Both picard and worf belong to starfleet. Even though worf's effective gid isn't "starfleet", worf was expecting to see "starfleet" as the group owner of the mycopy.txt file.

How can worf get the desired results? Is there some other command that should be used instead of 'cp' command to achieve the desired results?
Yes, using "chgrp" to change the group owner works, but is there some single copy-like command (ie: "tar" or "rsync", etc...) that can be used?

Thanks
--Andrew
# 2  
Old 01-03-2013
Since worf is not picard, the attempt (by cp's -p option) to set the user-ID and group-ID (most likely using the chown() system call) will fail. (Note that the -p option attempts to preserve the values of both user-ID and group-ID together; not the two values separately. There shouldn't be any expectation that the group-ID will be preserved if the user-ID can't be preserved.
# 3  
Old 01-03-2013
You can use a pax oneliner perhaps (posistion yourself in working directory)
Code:
pax -rw -pe -s /myfile.txt/mycopy.txt/g myfile.txt $PWD/

# 4  
Old 01-03-2013
Hi Andrewkl.

Just to make sure that this question wasn't answer before on the forum I did a search with google with this statement:

use of "cp -p"

The second search result is a post on linuxquestions.org Smilie

Code:
http://www.linuxquestions.org/questions/linux-newbie-8/why-doesnt-cp-p-file-copy-file-and-preserve-ownership-169007/

Anyway, the problem has been described by Don Cragun, I'll add that root is the only one that could preserve the GID and UID with cp -p command (I guess).
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to add using awk command for a group?

hi all below is the input file contains a code followed by amount input file 345,5.86 346,20.58 399,10.00 400,12.00 i need the output in the following way outputfile totalsumof345and346,26.44 totalsumof399and400,22.00 (10 Replies)
Discussion started by: hemanthsaikumar
10 Replies

2. UNIX for Dummies Questions & Answers

Tar command to preserve the folder/file arrangement

Hi, I do have question for un tar a file. I have several 'tar'ed files. For example: SRS.tar.bz2. I was trying to untar them in a linux server using the command: tar xvjf SRS.tar.bz2 It worked perfectly. but when I open this file in my mac computer all the files are extracted into a... (7 Replies)
Discussion started by: Lucky Ali
7 Replies

3. UNIX for Dummies Questions & Answers

regarding changing ownership and group

i am able to change the mode using chmod and able to change permission. but i am not able to change group and ownership. getting as invalid can any one help me regarding this . (4 Replies)
Discussion started by: satheeshkr_cse
4 Replies

4. UNIX for Advanced & Expert Users

Permission denied, but user is owner and has group ownership too

Folks, I have a problem with a particular file, that seems to have some kind of lock on it, that takes around 1 hour approx to timeout. I have used lsof and nothing has an open file handle on it, yet I cannot open it. My user/group owns the file and I can create edit/delete files in... (6 Replies)
Discussion started by: scottrus
6 Replies

5. Shell Programming and Scripting

command to group records

hi, i have records like this supplier,product, persons involved 10,150,ravi@yahoo.com 30,200,ravi@yahoo.com 20,111,payal@gmail.com 40,211,ravi@yahoo.com i want to write a command which displays values like this 10,30,40,ravi@yahoo.com for ravi@yahoo.com if there are n number of... (7 Replies)
Discussion started by: trichyselva
7 Replies

6. Linux

failed to preserve ownership operation not permitted

Hi i have written one backup script in linux workstation.The backup script will do zipping files and moved to the backup directory(i,e /net/ts-bcn/sb_backup/sand). #So while moving zipped files to the backup directory i am getting some error like this error:mv:failed to preserve ownership... (2 Replies)
Discussion started by: yogks
2 Replies

7. UNIX for Advanced & Expert Users

command to copy files with original ownership

Hi, I need a command that to copy files from others and to keep files' ownership. Example: I copy file.txt from users "abc" to my local, and file.txt is own by user "abc" in local. Thanks in advance! (3 Replies)
Discussion started by: need_help
3 Replies

8. Shell Programming and Scripting

Rsync - Preserve owner/group with different UID/GID

Dear Folks :-) I want to rsync some files between some servers and preserve files owner and group (not UID or GID), in some machines UID and GID are differents, for example: a) In the rsync server: # stat vbseo.php File: `vbseo.php' Size: 26758 Blocks: 56 IO... (1 Reply)
Discussion started by: Santi
1 Replies

9. Shell Programming and Scripting

command to add users to group

does a command exist to add users to more than one group? i think the usermod command can do this but i'm not really sure. past ways of me doing this has always been to just hack the /etc/group file and put the user in whatever group i need him to be in. however, vi..ing files like /etc/groups... (2 Replies)
Discussion started by: Terrible
2 Replies

10. UNIX for Advanced & Expert Users

File group ownership changing automatically

Hi everyone, Need help with an issue. The group ownership of files on my Solaris system is getting changed automatically. Could someone tell me the reason why? And how could I correct it? One more info- everytime the ownership changes, it changes to "x". Thanks :confused: (1 Reply)
Discussion started by: top_gun
1 Replies
Login or Register to Ask a Question