Jaxc made a nice script to make some room in your relooks memory.
I have used from Highland 2.11 till 2.14 and it worked great.
Copy the code into a file and copy it to your relook, then execute it via telnet with ./*****, where ***** is your filename.
Or use telnet to enter every line one at a time and press enter after every line.
#################################
#var to HD /Var/Data script v1.5
# by Jaxc
echo "Copying to Hdd"
killall newcs mgcamd evocamd cardspider cs2gbox capmtserver CCcam gbox # (killall emu's)
touch /var/tmp/gbox.kill
A="emu keys keys0 etc scripts plugins www"
for e in $A ; do
rm -rf /var/data/$e #(remove files from HDD)
mv /var/$e /var/data/ #(copy files to HDD)
ln -s /var/data/$e /var/$e # (set symlinks)
done
killall httpd
httpd -h /var/data/www #(set HTTPD dir to /var/data)
echo "Var ready"
#######################################