The Linux authoring software, dvd+rw-tools, is used to create data on the DVD+R and DVD+RW medias. For older Linux distributions such as Red Hat 9, the software must be installed manually if the operating system has been reinstalled.
To install the software, insert the ASL Driver CD and run the following commands:
# mount /mnt/cdrom # rpm -ivh /mnt/cdrom /ASL-packages/dvd+rw-tools-5.2.4.1.4-1.src.rpm # umount /mnt/cdrom
Note: SuSE Linux requires dvd+rw-tool version 5.21 or higher.
For the remainder of the document, a generic device name
For Red Hat Linux or CentOS, replace
Before using DVD+RW media, it must be formatted first. To format a blank DVD+RW media, run the following command:
dvd+rw-format /dev/<device>
To create data, run the following command:
growisofs -R -J -Z /dev/<device> <directory or file> ...
For example:
growisofs -R -J -Z /dev/<device> /home /usr
When using DVD+RW media, data can be appended using the following command:
growisofs -R -J -M /dev/<device> <directory or file> ...
For example:
growisofs -R -J -M /dev/<device> /lib
Note: DVD+R media can only be written one time.
To access data, mount the DVD+R/RW media using the ISO9660 file system as following:
mount /dev/<device> <mount point>
For older Linux distributions, it might be necessary to specify the ISO9660 file system explicitly.
mount -t iso9660 /dev/<device> <mount point>
To create data on the CDR or CDRW media, use k3b or xcdroast under KDE. These are the graphical authoring tools that are easy and friendly to use.
For users who preferred the console application, use cdrecorder.
cdrecord dev=x,x,x -v <ISO image file>
The ISO image file is created with mkisofs. For example:
mkisofs -R -o image.iso /home/mydata /home/mydata2 cdrecord dev=x,x,x -v image.iso
The parameters for dev can be obtained by running the following command:
cdrecord -scanbus
Here is a sample output:
Cdrecord 1.10 (i686-pc-linux-gnu) Copyright (C) 1995-2001 Jörg Schilling Linux sg driver version: 3.1.22 Using libscg version 'schily-0.5' scsibus0: 0,0,0 0) 'HP ' 'DVD Writer 100j ' '1.37' Removable CD-ROM 0,1,0 1) * 0,2,0 2) * 0,3,0 3) * 0,4,0 4) * 0,5,0 5) * 0,6,0 6) * 0,7,0 7) *
For this example, the value of dev is 0,0,0.