> How do I go about changing the ownership of directories to another person? > For example root to uucp? Just as you would a normal file: chmod user.group filename or chmod user filename to do it recursively (IE everything within the directory, too): chmod -R etc. etc. HTH -Greg