I'm looking for a Linux command that can change ownership of all files belonging to a given user, preferably in a targeted directory, to another specified user.

My dream command would look something like this...

chuser -R --olduser tom --newuser jerry

or

chuser -R --olduser 1066 --newuser 1492

This is my scenario... I have a backup file (.tgz) with user and group information preserved in it. It was taken from a web server running Apache and MySQL. The files in the backup are from across the system and contain files from several different users and several system type accounts and it is key that when restored on the new server the settings are not lost. The problem is that the users on the machine the files are being restored to don't match the ones in the backup file. For instance both machines had a MySQL user but they have different user ids and there are several user ids that existed on both machines that belong to different users. This means there is no way to sync the users on the new machine to the ones on the old machine.

I can find all the users files with the find command like this...

find /decompressed-backup-dir -uid 1050

or

find /decompressed-backup-dir -user tom

If, as I suspect, there is no way to do what I want with a single command then perhaps there is a way to pipe the results of the find command to another command to handle the ownership change?

I could do this with a PHP script but there are 4GB and tens of thousands of files in the backup so I don't want to use PHP or Perl but I would be happy with a shell script that could handle it.

link|improve this question
feedback

migrated from stackoverflow.com Jul 20 '11 at 4:36

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 6 down vote accepted

Something like

find /decompressed-backup-dir -uid 1050 -exec chown newuser:newgroup {} +
link|improve this answer
feedback

You can use find, as some one else posted, to do the chown. However, you may not have to as tar will take care of things for you. For example, if you make a tar on machine A where user tom is uid 500 and then untar the file on machine B where user tom is uid 505, tar will do the right thing and make the files owned by uid 505.

link|improve this answer
Interesting tidbit, I was not aware of this. So tar not only stores the uid but also the name associated with the uid. – Nicholi Jul 20 '11 at 20:23
2  
The original tar format only stored the numeric information. The UStar format, introduced by POSIX in the late '80s, adds the names. So pretty much any tar you encounter these days does the right thing. – Ciclamino Jul 22 '11 at 21:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.