35 | | 1. Burn the data (more info at [wiki:Tools/DVD_burning]) |
36 | | 1. `mkisofs -R -udf -verbose -o /tmp/dvd.iso -V <ARSF-PROJECTCODE-JULIANDAY> <delivery_directory>` |
37 | | 1. `cdrecord dev=/dev/dvdwriter -sao fs=100m driveropts=burnfree -v /tmp/dvd.iso` |
38 | | 1. `rm /tmp/dvd.iso` |
| 35 | 1. Burn the data (more info at [wiki:Internal/Tools/DVD_burning]) |
| 36 | 1. create an iso image with `mkisofs -R -udf -verbose -o /tmp/dvd.iso -V <ARSF-PROJECTCODE-JULIANDAY> <delivery_directory>` |
| 37 | 1. test the iso with `sudo mount -o ro,loopback /tmp/dvd.iso /mnt/tmp` - mounts to /mnt/tmp, go look at it, then unmount with `umount /mnt/tmp` (yes, that is umount not unmount) |
| 38 | 1. if it's ok, burn to CD/DVD with `sudo cdrecord dev=/dev/dvdwriter -sao fs=100m driveropts=burnfree -v /tmp/dvd.iso` |
| 39 | 1. clean up with `rm /tmp/dvd.iso` |