Account Links: Cart | Your Account | Logout

Skip to content

Red Hat Knowledgebase

Red Hat Knowledgebase Search:

Updated Within the Last:

New Solutions within the last day New Solutions within the last week New Solutions within the last month

Browse by topics:


Click to View a Topic
Red Hat Enterprise Linux > AS/ES/WS Basics > Issue <<  10 of 894 >>

Solution Tools:


Email a Solution Postcard Printer version Submit a comment on this answer Update notifications Request an answer Back

Article Reference

Article ID: 446
Last update: 09-25-06
Issue:
How do I burn ISO images to CD-Rs and CD-RWs with cdrecord?
Resolution:

The first step is to determine the device name with the following command. Example:

# cdrecord -scanbus
 
Cdrecord-Clone 2.01-dvd (i686-pc-linux-gnu) Copyright (C) 1995-2004 Jörg Schilling
scsidev: 'ATA'
devname: 'ATA'
scsibus: -2 target: -2 lun: -2
Linux sg driver version: 3.5.27
Using libscg version 'schily-0.8'.
cdrecord: Warning: using inofficial libscg transport code version (schily - Red Hat-scsi-linux-sg.c-1.83-RH '@(#)scsi-linux-sg.c        1.83 04/05/20 Copyright 1997 J. Schilling').
scsibus1:
        1,0,0   100) 'HL-DT-ST' 'RW/DVD GCC-4481B' 'E106' Removable CD-ROM
        1,1,0   101) *
        1,2,0   102) *
        1,3,0   103) *
        1,4,0   104) *
        1,5,0   105) *
        1,6,0   106) *
        1,7,0   107) *

Use the cdrecord command line with -dao options to burn with "Disk At Once" mode.

 cdrecord -v -dao dev=0,0,0 /path-to-file/filename.iso

The -v stands for verbosity and the -dao stands for "Disk At Once." Use the dev= options to define the device that was found with the scanbus option above, in this example, it's 0,0,0.

To burn multi-session CD, -multi option on all sessions except the last session.

cdrecord -v -multi -dao dev=0,0,0 /path-to-file/filename.iso

Note: In Red Hat Enterprise Linux 4, when using ide burner use:

dev=ATA:0,0,0

See man cdrecord for additional cdrecording options.


How well did this entry answer your question?


good wrong incomplete out of date
Red Hat Enterprise Linux > AS/ES/WS Basics > Issue <<   10  of  894  >>