![]() |
![]() |
![]() |
|||||
![]() |
![]() |
![]() |
![]() |
![]() |
|||
| Welcome
to Tech Support Forum home to more then 136,000 problems solved. Issues
have included: Spyware, Malware, Virus Issues, Windows, Microsoft,
Linux, Networking, Security, Hardware, and Gaming Getting your
problem solved is as easy as: 1. Registering for a free account 2. Asking your question 3. Receiving an answer Registered members: * See fewer ads. * And much more..
|
| Want to know how to post a question? click here | Having problems with spyware and pop-ups? First Steps |
|
|||||||
| Linux Support Linux - Operating Systems and Applications Support |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) |
|
Registered User
Join Date: Aug 2007
Posts: 4
OS: xp
|
find chown -R
hello,
so i've been trying to change ownership of all directories in a directory owned by many people to one group. issue is there are dozens of linked directories which i do not what to chown on. so i've been trying to find an easy way to do this and have gotten this far: # find . ! -user [user] -prune -exec chown -h [user] {} \; for my effort i get: find: No match. now i've changed user to match file owners and/or new owners but still no dice... can anyone see what the heck i'm missing here? ~lynk |
|
|
|
| Important Information |
|
Join the #1 Tech Support Forum Today - It's Totally Free!
TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free. Join TechSupportforum.com Today - Click Here |
|
|
#3 (permalink) |
|
Registered User
|
Re: find chown -R
just to clarify this is your example filesystem...
+topdir -topdir ...-middir ......+subdir ......+subdir ......+subdir ...-middir ......+subdir ......+subdir ...+middir +topdir What you are asking is to be able to change ownership of all the middir directories without affecting the subdir directories? If this is so just use Code:
chown user:group * Hope this helps
__________________
----------------------------------------------- Ensure you are making mistakes... Its the only way you will learn!!!!! ----------------------------------------------- Last edited by mike.lamb; 08-17-2007 at 03:58 AM. |
|
|
|
|
|
#4 (permalink) |
|
Registered User
Join Date: Aug 2007
Posts: 4
OS: xp
|
Re: find chown -R
Hi mike.lamb,
Yeah that's just what I needed to do, but we're talking gigs of data and hundreds of dirs. I did what you suggested on the dirs without links, chown -R dir user. For the ones with links to god knows where I. # find . ! old_user -prune -exec chown -R new_user {} \; It took longer then I wanted but kept ownship in place where I wanted too. ...Brute Force is in, oh boy, brute force is in... ;) Thank you for helping me sort this out. ~lynk |
|
|
|
![]() |
| Thread Tools | |
|
|