LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How to burn an ISO image in Redhat 9 (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-burn-an-iso-image-in-redhat-9-a-182717/)

newjuan 05-17-2004 10:56 PM

How to burn an ISO image in Redhat 9
 
Hey all i'm new to linux and i'm having a bit of trouble finding a good "how-to" on burning iso images. If my cdrom is located on /dev/cdrom1, how would I burn x.iso image? Is it just a command I can enter in terminal? Thanks a bunch!

Bruce Hill 05-17-2004 11:02 PM

Look in this thread. He answers that, and a lot of other things that will be very helpful ->
http://www.linuxquestions.org/questi...hreadid=169240

Welcome to LQ!

newjuan 05-18-2004 03:07 AM

I'm very sorry but I am new to linux and that faq was like greek to me. This iso burning issue is the only problem i'm having so i'd be super appreciative if anybody could help me with the proper command to run in terminal to burn an iso with cdrecord.

Bruce Hill 05-18-2004 06:15 AM

Quote:

Originally posted by newjuan
i'd be super appreciative if anybody could help me with the proper command to run in terminal to burn an iso with cdrecord.
First, this is better than anything I can give you: CD-Recordable FAQ

Now, do you just want the command, or a more explanatory tutorial? Here's the command
Code:

# cdrecord -v speed=<burning speed> dev=<your device> /path/to/iso
and some info.

First, the command must be issued as su (super user, root). NB: if you see $ it's a normal user, # means su.

Now, if you want to know the <burning speed> look on the drive door.
For <your device> issue
# cdrecord -scanbus
and get some input similar to this
Code:

bash-2.05b# cdrecord -scanbus
Cdrecord 2.00.3 (i686-pc-linux-gnu) Copyright (C) 1995-2002 Jörg Schilling
Linux sg driver version: 3.1.25
Using libscg version 'schily-0.7'
scsibus0:
        0,0,0    0) 'SONY    ' 'CD-RW  CRX230E  ' 'QYS1' Removable CD-ROM
        0,1,0    1) 'SONY    ' 'DVD RW DRU-500A ' '2.0c' Removable CD-ROM
        0,2,0    2) *
        0,3,0    3) *
        0,4,0    4) *
        0,5,0    5) *
        0,6,0    6) *
        0,7,0    7) *
scsibus1:
        1,0,0  100) 'HITACHI_' 'DK23CA-30      ' '0811' Disk
        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) *

so we see I have both a CD-RW and a DVD+/-RW. I'll use the CD-RW in this example.
If you don't know where you saved the ISO image, well...

Now, here's a real life example of me burning slackware-9.1-install-d1.iso to disc.
Code:

bash-2.05b# cdrecord -v speed=24 dev=0,0,0 /AppSwap/Linux/Slackware/slackware-9.1-install-d1.iso
Does this help you?

newjuan 05-18-2004 09:52 PM

Rock on man! You are the only person who has been able to help me. I'm damn near tempted to write a faq and put it out there for newbies like me ;)

Bruce Hill 05-18-2004 10:52 PM

What ISO did you burn? Surely you're going to give Slackware a try. ;-)

Look here http://www.linuxquestions.org/questions/answers.php and here http://wiki.linuxquestions.org/


All times are GMT -5. The time now is 12:42 PM.