Raymond Norton wrote: > We managed to rescue all the home folders, and user info files from our > server that crashed. We have copied them over to a new Fedora core 3 > install. Is there a script I can run that can give the users in > /etc/passwd full control of their original home folder. As of now, only > root has permission to access them. cd /home for i in *; do chown -R $i $i; done Please note, untested. it also assumes that each users home directory is named after the username. -- Munir Nassar