Hi -
Your "chmod" command basically seems OK, but there are a few potential gotcha's. Please try this:
Quote:
ls -ld /tmp
drwxrwxrwt 5 root root 52224 Nov 10 19:06 /tmp
<= YOU SHOULD SEE SOMETHING LIKE THIS: OWNER, GROUP & WORLD HAVE READ, WRITE AND EXECUTE
|
If you don't, try these three steps:
Quote:
su - root
<= BECOME "ROOT" USER
umask 0
<= SET YOUR "UMASK" TO ZERO (POTENTIAL "GOTCHA" #1)
chmod 777 /tmp
<= EXPLICITLY SET PERMISSIONS
|
'Hope that helps .. PSM