View Single Post
Posts: 162 | Thanked: 351 times | Joined on Apr 2006 @ Cotswolds, UK
#13
By the way, the solution to the "No space left on device" error is to have TMPDIR=/var/tmp in the environment when gpesyncd --remote is invoked using ssh.

The easiest way to do that is to use an xterm on your Internet Tablet and gain root. Then issue the following commands:

cd /usr/bin
mv gpesyncd gpesyncd.real
cat <<EOD >gpesyncd
#!/bin/sh
export TMPDIR=/var/tmp
/usr/bin/gpesyncd.real "\$@"
EOD
chmod +x gpesyncd

This replaces gpesyncd with a shell script which defines the necessary environment variable and then invokes the real gpesyncd program.

hayao: any chance of updating your gpesyncd package to do this?

Graham