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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
11-16-2003, 09:52 AM
|
#1
|
Member
Registered: Nov 2003
Posts: 30
Rep:
|
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.
|
|
|
11-16-2003, 10:02 AM
|
#2
|
Senior Member
Registered: Sep 2003
Location: Sweden
Distribution: Debian
Posts: 3,032
Rep:
|
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.
|
|
|
11-16-2003, 10:20 AM
|
#3
|
LQ Guru
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141
Rep:
|
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
|
|
|
11-16-2003, 10:22 AM
|
#4
|
Member
Registered: Nov 2003
Posts: 30
Original Poster
Rep:
|
(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
|
|
|
11-16-2003, 10:26 AM
|
#5
|
LQ Guru
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141
Rep:
|
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.
|
|
|
11-16-2003, 10:46 AM
|
#6
|
Member
Registered: Nov 2003
Posts: 30
Original Poster
Rep:
|
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
|
|
|
11-16-2003, 10:50 AM
|
#7
|
LQ Guru
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141
Rep:
|
OK, now try this:
Code:
cdrecord -v speed=4 dev=1,0,0 /home/almostartafact/MandrakeLinuxCD1.iso ; eject
|
|
|
11-16-2003, 12:05 PM
|
#8
|
Senior Member
Registered: Jan 2002
Location: Nanjing, China
Distribution: Ubuntu 22.04
Posts: 2,151
Rep:
|
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:16 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|