Just to tinker with it, last night I installed the Android Studio/SDK, and both during install and use, it repeatedly blew my 2Gb /tmp partition. Is there any way to tell t
Setting -Djava.io.tmpdir=whatever didn't work for me. I simply created $HOME/tmp/PackageOperation04 and then created a symlink from /tmp.
-Djava.io.tmpdir=whatever
$HOME/tmp/PackageOperation04
/tmp
cd ~ mkdir -p tmp/PackageOperation04 cd /tmp ln -s $HOME/tmp/PackageOperation04
This way the Android SDK uses my /home partition instead of /tmp for this.
/home