Penguin
Blame: DVDWritingNotes
EditPageHistoryDiffInfoLikePages
Annotated edit history of DVDWritingNotes version 1, including all changes. View license author blame.
Rev Author # Line
1 MattBrown 1 Burning DVDs seems to be quite easy.
2
3 Use the dvd+rw-tools package, which is conveniently apt-getable in Debian. Then simply type the following command
4
5 <verbatim>
6 growisofs -Z /dvd/device -R -J /path/to/files/for/dvd
7 </verbatim>
8
9 growisofs will automatically take care of building the iso9660 image and writing it to your DVD drive. Everything after the /dev/device specification is mkisofs options which are passed through explicitly.
10
11 -R and -J enable RockRidge and Joliet extensions.
12
13 You can also create multi-session DVD+R's and add content to DVD+-RW disks using the -M option to growisofs.
14
15 So for example to create daily backups for a project I'm working on I execute the following commands
16
17 ! Day 1 (1 Dec 2005)
18 <verbatim>
19 growisofs -Z /dev/device -R -J --graft-points 20051201=/home/model
20 </verbatim>
21
22 ! Day 2 (2 Dec 2005)
23 <verbatim>
24 growisofs -M /dev/device -R -J --graft-points 20051202=/home/model
25 </verbatim>
26
27 And so on until the DVD is full. I end up with folders for each date on the DVD and within each folder is the contents of /home/model as it existed at the end of the day. Each backup is stored in a separate session on the DVD.
28
29 I've only tested this with DVD+R format DVDs and the DVD reader in my IBM T42 laptop. I'm not sure whether separate sessions are supported by other readers/writers but it works for me.
30
31 Obviously you should consult the mkisofs(8) and growisofs manpages for more info.
32
33 ----
34 CategoryDiskNotes, CategoryStorage