Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The solution is to tell the program to write its temporary files somewhere else, such as a directory in your Scratch area. Most programs have an option for this if you look at their documentation.

Tip

Note that Home directories should not be used for temporary files, since they have 100 GB per-user quotas and can also fill up.

If the program you're using doesn't seem to have an option to change the location of temporary files, you may be able to achieve the same effect by setting several environment variables that are commonly used. The exmple below creates a directory in the GSAF group's Scratch area.

Code Block
languagebash
mkdir -p /stor/scratch/GSAF/tmp
chmod 777 /stor/scratch/GSAF/tmp
TMPDIR=/stor/scratch/GSAF/tmp
TMP=$TMPDIR
TEMP=$TMPDIR
export TMPDIR TMP TEMP

You may also need to Contact Us to delete /tmp directory contents if you are not able to do so yourself (users can delete anything they write to /tmp).

...