All input greatly appreciated.
I'm using CDrecord, CDutils and command line scripts on a CD-RW.
It burns one every month in cron.monthly and ejects it.
There is a server manager contrib but i think it didn't work in SME7, that's why i use the scripts.
You need:
cdrecord-2.01.1-5
cd-utils-0.3.2-1.noarch.rpm
mkisofs-1.10-11.i386.rpm
My script looks something like this:
#!/bin/sh
#Delete old ISO file. (From previous backup)
rm -f /tmp/somename.iso
#Burn the CD
cdrecord blank=fast dev=/dev/cdrom #Blanks the CD-RW
mkisofs -r -J -l -d -o /tmp/somename.iso /ibays/the_dir_you_want/ #Makes an ISO to burn
cdrecord -v -eject dev=ATAPI:0,1,0 fs=64M speed=10 driveropts=burnproof /tmp/somename.iso | mail me@myemail.adressMaybe a bit simple but it has been working good for me.
I have never tried with a DVD drive, but can't be much different.
Per