LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
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 06-07-2003, 10:13 PM   #1
futurist
Member
 
Registered: Mar 2002
Location: malaysia
Distribution: Mandriva 2006 RC1
Posts: 486

Rep: Reputation: 30
Talking How to burn CD-R & CD-RW ?



Hi,
I just bought a Sony 48x24x48 CD-writer, it comes with a CD contains software for windows, but not for linux.

I am using linux mandrake 9.0, how to burn files onto CD-R/RW, can it be as easy as drag-and-drop ?
How to format CD-R/RW? Can I compress it?

Thanks.


 
Old 06-07-2003, 10:42 PM   #2
sbadelt
Member
 
Registered: May 2003
Location: Los Angeles, CA
Distribution: Mandrake 9.2
Posts: 36

Rep: Reputation: 15
There are several CD burning applications (front ends) available on Mandrake 9.1. I'm not sure about Mandy 9.0. Try looking a K->Applications->Archiving->CD Burning. If you can't find any on your install, look for them in RPMDrake. If they aren't on your distro CDs, then you can always search for RPMs for K3B, GnomeToaster, and GCombust.

Steve
 
Old 06-07-2003, 10:44 PM   #3
sbadelt
Member
 
Registered: May 2003
Location: Los Angeles, CA
Distribution: Mandrake 9.2
Posts: 36

Rep: Reputation: 15
Oh, and yes, it's as easy as drag-and-drop, the apps should be able to search for and configure your drrive setup appropriately.
 
Old 06-14-2003, 07:46 AM   #4
futurist
Member
 
Registered: Mar 2002
Location: malaysia
Distribution: Mandriva 2006 RC1
Posts: 486

Original Poster
Rep: Reputation: 30
I can't burn CDR/CDRW in linux. The applications I have are Eroaster, G-combust, Gnome-toaster and X-CD-roast.

I tried, but the CD burner just ejected the CDR and application failed.
 
Old 06-14-2003, 10:14 AM   #5
Korff
Member
 
Registered: May 2003
Location: Central Florida
Distribution: Gentoo
Posts: 103

Rep: Reputation: 15
Try using K3b. It's very friendly, drag and drop, and has an automatic configuration tool.
 
Old 06-14-2003, 10:16 AM   #6
futurist
Member
 
Registered: Mar 2002
Location: malaysia
Distribution: Mandriva 2006 RC1
Posts: 486

Original Poster
Rep: Reputation: 30
Quote:
Originally posted by Korff
Try using K3b. It's very friendly, drag and drop, and has an automatic configuration tool.
please tell me where to download its RPM file.
 
Old 06-14-2003, 10:49 AM   #7
mad_ady
Member
 
Registered: Jan 2003
Location: I'm all in your mind!
Distribution: Debian
Posts: 248

Rep: Reputation: 30
Search for it on www.rpmfind.net Then select your distro and download it!
 
Old 06-14-2003, 12:26 PM   #8
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
Let your fingers do the commanding. Mice are for cats and mousetraps.
# CD burning 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
# 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
# Generate an ISO from a directory.
mkisofs -Jr -o foo.iso /path/to/directory
mkisofs -vrTJUV "Label" -o foo.iso /path/to/directory
# Generate an ISO from a CD
dd if=/dev/cdrom of=foo.iso
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 06-17-2003, 01:23 PM   #9
Tommi
Member
 
Registered: Apr 2003
Posts: 185

Rep: Reputation: 30
its art. you may need work for two weeks before it works. This was not a good answer but it may help you to find right attitude.

After I have been studying for two weeks for next, I may give you some true answers.

-Tommi
 
Old 06-18-2003, 04:57 PM   #10
nemesisza
Member
 
Registered: Apr 2003
Distribution: Slackware 9.1
Posts: 36

Rep: Reputation: 15
hey guys...

I am looking for a console based CD Writing Program.
Anyone?
 
Old 06-18-2003, 05:10 PM   #11
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
# CD burning 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
# 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
# Generate an ISO from a directory.
mkisofs -Jr -o foo.iso /path/to/directory
mkisofs -vrTJUV "Label" -o foo.iso /path/to/directory
# Generate an ISO from a CD
dd if=/dev/cdrom of=foo.iso
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 06-18-2003, 09:40 PM   #12
futurist
Member
 
Registered: Mar 2002
Location: malaysia
Distribution: Mandriva 2006 RC1
Posts: 486

Original Poster
Rep: Reputation: 30
Windows is better in doing cd recording, i use Nero burning ROM.
 
Old 06-18-2003, 09:53 PM   #13
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
No way! Want to compare coaster numbers, huh?
 
Old 06-22-2003, 11:29 PM   #14
futurist
Member
 
Registered: Mar 2002
Location: malaysia
Distribution: Mandriva 2006 RC1
Posts: 486

Original Poster
Rep: Reputation: 30
Windows is the best in doing this,
Nero is the best choice.
Multisessions CD, CD-copying, soundtrack converting, virtual CD etc., all can be done .
 
Old 06-22-2003, 11:48 PM   #15
Allen614
Member
 
Registered: Dec 2002
Location: Plains
Distribution: Slackware 13
Posts: 465

Rep: Reputation: 30
I see you've added a few lines to your CD burning tutorial. fancypiper.
I've still got the original from that "other" board. Thanks again.

futurist - Nero-Windows locks up your box just to burn a CD. In Linux-cdrecord you can surf the net,play a game or even compile a program at the same time.
 
  


Reply



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
Can't burn a cd using mdk 9.2 & k3b riponleech Linux - Newbie 1 09-30-2005 06:51 PM
k3b error with audio cd burn (no prob with iso burn) bluem Linux - Newbie 1 04-16-2004 08:05 AM
Dual Boot, RH Burn to DVD, & DWL-520+ VanZero Linux - General 3 03-13-2004 09:47 AM
Kaudio questions & other rip / burn ??? rhythmking Linux - Software 0 12-25-2003 10:23 PM
improve burn with Xcdroast & CDRW1610A Philips? szmartby Linux - Hardware 5 09-21-2003 09:34 PM

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

All times are GMT -5. The time now is 02:27 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