Hi.
I do a similar thing at my work place once a week. There are probably better ways to do it but this has never failed me once, and I have resorted to these backup's before.
This is my script if you want it... Above each line after the # I have put what each command does so you know.
****************************************************
# create a tar file of everything in my /data folder. The `date ` that is in there puts the date in the name of the file so you can keep track. You can delete these if you want.
tar -cf /backup/backup-`date +%F`.tar /data
# Create an iso of the .tar file you created before.
mkisofs -J -D -R -x /backup/lost+found -o /backup/backup.iso /backup/backup-`date +%F`.tar
# Burn the image and automatically eject it after completed.
dvdrecord dev=ATAPI:0,0,0 -data -dao -pad -eject /backup/backup.iso
# Delete the iso file that you created.
rm -rf /backup/*.iso
*****************************************************
There probably are better ways to do this but it does work for me no probs.
Good luck

Craig