Linux - SoftwareThis 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.
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.
# 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
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 09:34 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
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.