LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Help Burning ISO Image (https://www.linuxquestions.org/questions/linux-software-2/help-burning-iso-image-116642/)

AlmostArtafact 11-16-2003 08:52 AM

Help Burning ISO Image
 
I am running RH9 and I am trying to use GnomeToaster 1.0 Beta 6 to burn this.I have looked all over that program and I cannot seem to find where it says to burn an image file.If anyone could tell me how to do this or reccomend another burning program I would be very greatful.Thanks.

hw-tph 11-16-2003 09:02 AM

cdrecord -v speed=2 dev=2,0 cdimage.iso
Find out what your CD recorder device name is (to use with the dev= option above) using cdrecord -scanbus.

...or read the man page for cdrecord for more options (man cdrecord).

Håkan

fancypiper 11-16-2003 09:20 AM

The command line is your friend.....

# CD burning copying ripping info
Is it configured and what is the device? Command this to find out:
cdrecord -scanbus
Adding an IDE CD-Writer to Linux
CD Writing HOWTO
Burning CDs on Linux
# Burn an ISO to disk
cdrecord -v speed=<burning speed> dev=<your device> /path/to/foo.iso
# Burn from disk to disk
cdrecord -v dev=<your device> speed=<burning speed> -isosize /dev/cdrom
#ISO information
isoinfo -i -d /dev/cdrom
# Generate an ISO from a directory.
mkisofs -vrTJUV "Label" -o foo.iso /path/to/directory
# Generate an ISO from a CD
dd if=/dev/cdrom of=foo.iso
# cdparanoia - search for a drive with reporting of autosense:
cdparanoia -vsQ
# Rip a complete audio CD with cdparanoia
cdparanoia -B "1-"
Linux MP3 CD Burning mini-HOWTO
# Convert mp3 to wav with lame
for i in *.mp3; do lame --decode $i `basename $i .mp3`.wav; done
# Burn a CD from wav files
cdrecord -v -audio -pad speed=<burning speed> dev=<your device> /path/to/*.wav
# Erase a CDRW
cdrecord -v dev=<your device> speed=<burning speed> blank=fast

AlmostArtafact 11-16-2003 09:22 AM

(sorry im new to linux)
I get an error message when I try it.This is what I have typed.

cdrecord -v speed=2 CD-RW NR-9100A=2,0 MandrakeLinuxCD1.iso

fancypiper 11-16-2003 09:26 AM

OK, lets go step by step. We need to know what device it is and if you have it configured correctly first.

Open an x terminal
Use this command to become root
su -
give root's password and press enter
give this command:
cdrecord -scanbus
Paste the output of that here.

What I get for an example
Code:

Sun Nov 16 10:27am fancy@tinwhistle ~$ su -
Password:
Sun Nov 16 10:32am root@tinwhistle ~ # cdrecord -scanbus
Cdrecord 1.10 (i686-pc-linux-gnu) Copyright (C) 1995-2001 Jörg Schilling
Linux sg driver version: 3.1.24
Using libscg version 'schily-0.5'
scsibus0:
        0,0,0          0) 'GENERIC ' 'CRD-BP1300P    ' '1.02' 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) *

My device is 0,0,0 and it is configured correctly.

AlmostArtafact 11-16-2003 09:46 AM

Ok, Im not trying to waste your time but I really need this done and so far all I have accomlished is a headache.This is what I have,


scsibus1:
1,0,0 100) '_NEC ' 'CD-RW NR-9100A ' '108A' 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) *


So do I copy 1,0,0 100) '_NEC ' 'CD-RW NR-9100A ' '108A' Removable CD-ROM
or just _NEC ' 'CD-RW NR-9100A ' '108A' Removable CD-ROM.



I tried to copy everything and I got this message,

No such file or directory. No read access for 'CD-RW'


Everything else looks correct though right?

cdrecord -v speed=4 dev=<your device> /home/almostartafact/MandrakeLinuxCD1.iso

fancypiper 11-16-2003 09:50 AM

OK, now try this:
Code:

cdrecord -v speed=4 dev=1,0,0 /home/almostartafact/MandrakeLinuxCD1.iso ; eject

Pedroski 11-16-2003 11:05 AM

Your iso is probably not right
If your device is dev=1,0,0
then do in a terminal [me@mycomputer adirectory]$
mkisofs -v -r -o session1 /path/to/afile
Then you find a file session1 in adirectory
Burn this to a new cd in the same terminal with
cdrecord -v speed=4 dev=1,0,0 -eject -multi -data session1
The cd remains open
You can copy more files to it.
To copy a second file to it do
cdrecord -msinfo dev=1,0,0
This gives two numbers back.
Then do
mkisofs -v -r -o session2 -C firstnumber,secondnumber -M /dev/scd0 /path/to /afile
Then you have session2.
Copy this to cd with
cdrecord -v dev=1,0,0 -eject -multi -data session2
I find the frontends won't work.
You will have to umount your device for cdrecord to work.
When you're finished, you can delete session 1 2 ...whatever.
I wrestled with this for hours, it works fine here for me now, thanks to help from all the Linuxers out there.
Email me if you like.
Peter


All times are GMT -5. The time now is 06:24 PM.