Hi guys
Running Terminal off the Snow Leopard Install DVD, was trying to use the Reset Password app to Remove ACLs on a particular User Account.
For some reason that process ran all night and was still running in the morning, so I decided to quit and try Terminal instead.
I managed to successfully remove any ACL using
I also used
to change the group from wheel to staff, as this fell in line with the other user accounts on the machine.
However, I did a find and noticed that many many files in the MyUser/Documents folder were locked. I tried to use
but I keep getting command not found as the return.
I tried
but both returned command not found as well
I checked my paths:
I tried
so I know that the ls command is in the bin directory. Where would the chflags command be found? And can I call that command from the Install DVD, or does that only provide a sub-set of the UNIX commands?
Any light you can shed would be greatly helpful
cheers
mm66
Running Terminal off the Snow Leopard Install DVD, was trying to use the Reset Password app to Remove ACLs on a particular User Account.
For some reason that process ran all night and was still running in the morning, so I decided to quit and try Terminal instead.
I managed to successfully remove any ACL using
Code:
chmod -RN /Volumes/MyDrive/Users/MyUser
I also used
Code:
ls -led /Volumes/MyDrive/Users/MyUser
However, I did a find and noticed that many many files in the MyUser/Documents folder were locked. I tried to use
Code:
chflags -R /Volumes/MyDrive/Users/MyUser/Documents
I tried
Code:
/bin/chflags -R /Volumes/MyDrive/Users/MyUser/Documents
/usr/bin/chflags -R /Volumes/MyDrive/Users/MyUser/Documents
I checked my paths:
Code:
echo $PATH
/usr/bin:/bin:/usr/sbin:/sbin
I tried
Code:
/bin/ls
.forward Library
Any light you can shed would be greatly helpful
cheers
mm66