Right, here\'s what to do. If you don\'t already have one, buy a 128 or 256Mb SD card.
Flash to OZ. 3.2 or 3.3.6
format the sd card as ext2
Umount /mnt/card
Mkfs.ext2 /dev/mmcda1
Eject and re-insert card when done.
then create and run the following script (or if your happier running it manually, just go through the steps. I usually run it from /mnt/card. Oh, and make sure you have the zaurus plugged in so it doesn\'t go into suspend. What it does is move some of the larger dirs to the sd card, freeing up space on root. Because OPT is moved, everything you install to root should be put on the sd card.
#!/bin/sh
clear
echo removing sdcard dirs if they exist
rm -r /mnt/card/usr
rm -r /mnt/card/root
rm -r /mnt/card/opt
rm -r /mnt/card/home
cd /
echo copying opt
cp -a /opt /mnt/card/opt
echo copying root
cp -a /root /mnt/card/root
echo copying home
cp -a /home /mnt/card/home
echo removing opt
rm -r /opt
echo removing root
rm -r /root
echo removing home
rm -r /home
ln -sf /mnt/card/opt /opt
ln -sf /mnt/card/root /root
ln -sf /mnt/card/home /home
echo rebooting please wait
init 6
Once this is done and the systems\'s rebooted, install everything to root.
Al.