LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 11-16-2003, 09:52 AM   #1
AlmostArtafact
Member
 
Registered: Nov 2003
Posts: 30

Rep: Reputation: 15
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.
 
Old 11-16-2003, 10:02 AM   #2
hw-tph
Senior Member
 
Registered: Sep 2003
Location: Sweden
Distribution: Debian
Posts: 3,032

Rep: Reputation: 58
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

Last edited by hw-tph; 11-16-2003 at 10:04 AM.
 
Old 11-16-2003, 10:20 AM   #3
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
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
 
Old 11-16-2003, 10:22 AM   #4
AlmostArtafact
Member
 
Registered: Nov 2003
Posts: 30

Original Poster
Rep: Reputation: 15
(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
 
Old 11-16-2003, 10:26 AM   #5
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
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.

Last edited by fancypiper; 11-16-2003 at 10:34 AM.
 
Old 11-16-2003, 10:46 AM   #6
AlmostArtafact
Member
 
Registered: Nov 2003
Posts: 30

Original Poster
Rep: Reputation: 15
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
 
Old 11-16-2003, 10:50 AM   #7
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
OK, now try this:
Code:
cdrecord -v speed=4 dev=1,0,0 /home/almostartafact/MandrakeLinuxCD1.iso ; eject
 
Old 11-16-2003, 12:05 PM   #8
Pedroski
Senior Member
 
Registered: Jan 2002
Location: Nanjing, China
Distribution: Ubuntu 22.04
Posts: 2,151

Rep: Reputation: 73
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
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
burning an iso image? phonecian Linux - Software 5 01-26-2005 08:42 PM
Installing Yoper without Burning ISO Image? LinuxNewbie7 Yoper 6 12-07-2004 06:29 PM
Burning ISO image khdo80 Linux - General 6 10-31-2004 12:35 AM
Burning an ISO disk image on Linux paulsh2k4 Linux - Software 15 10-11-2004 10:50 AM
cdrecord error burning iso image mooreted Linux - General 8 04-19-2004 11:57 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

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

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration