Error executing the installer

General discussion of the Co:Z Toolkit
Post Reply
warren
Posts: 5
Joined: Tue Sep 16, 2014 9:47 am

Error executing the installer

Post by warren »

I am getting the following error when trying to execute the installer on USS, I am not UNIX/LINUS literate, has anyone seen this error before:

./coz-2.4.5.bin 11: temporary file () error using here document: EDC5129I No such file or directory.
coz
Posts: 391
Joined: Fri Jul 30, 2004 5:29 pm

Re: Error executing the installer

Post by coz »

This is usually due to either a full or read only /tmp directory. If /tmp can't be cleaned, it is possible to have the HERE documents written to $TMPDIR:

Code: Select all

export TMPDIR=$HOME
./coz-2.4.5.bin
...perform install
unset $TMPDIR
(Or leave $TMPDIR set for future use)
Post Reply