I do mine in 2 steps, ie make the ISO with mkisofs and burn it with growisofs. Here are the commands I use:
Code:
mkisofs -r -J -l -D -allow-leading-dots -o /tmp/backup.iso -graft-points /=/home/backup
growisofs -dvd-compat -speed=1 -Z /dev/dvd=/tmp/backup.iso
My growisofs isn't suid, the permissions are:
Code:
-rwxr-xr-x 1 root bin 78052 2006-02-20 10:01 /usr/bin/growisofs
The script containing that stuff runs out of cron on my setup with no problems, so I hope it's useful...