How to burn a DVD

From Wiki
Revision as of 21:51, 2 February 2011 by Scott (talk | contribs) (Created page with 'We assume that the DVD+RW device lives at <code>/dev/scd1</code>. * The blank DVD+R/RW must first be formatted: <pre> dvd+rw-format /dev/scd1 </pre> This step should only be per…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

We assume that the DVD+RW device lives at /dev/scd1.

  • The blank DVD+R/RW must first be formatted:
dvd+rw-format /dev/scd1

This step should only be performed once.

  • Initially burn data directories /home and /usr with this:
growisofs -R -J -Z /dev/scd1 /home /usr
  • Append additional directory /lib with this:
growisofs -R -J -M /dev/scd1 /lib
  • Access data by mounting to a mount point (like /mnt/dvd+rw):
mount -t iso9660 /dev/scd1 /mnt/dvd+rw