# On Linux server, setup NFS mount, add to /etc/exports
/home/example *(rw,sync)
chmod go+w /home/example
start NFS (/etc/rc.d/init.d/nfs start)
# On camera
mkdir /tmp/example # or wherever
mount -t nfs 192.168.0.1:/var/lib/example /tmp/example
unmount later via "umount /tmp/mnt"
To test from camera:
cp /dev/video/jpeg0 /tmp/example/test.jpg