Thursday 09 February 2006 5:09:22 am
Hi Ankur Please see your TMP and TMPDIR environment variable.
That should be like
TMP=/tmp
TMPDIR=/tmp
to see that you can use following commands
echo $TMP
echo $TMPDIR
or
env
to fix this use following commands.
export TMP=/tmp
export TMPDIR=/tmp
many time /tmp directory also create some problem if it does not have proper access permission. I guess that should fix your problem. All the Best !
|