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.
|
 |
|
08-28-2003, 10:10 PM
|
#1
|
Member
Registered: Aug 2003
Distribution: Alpine
Posts: 69
Rep:
|
wondering what cd burning software to use
Which burning software to use with SuSE 8.2 K3B is not working so i need another one
|
|
|
08-28-2003, 10:51 PM
|
#2
|
Member
Registered: May 2003
Posts: 598
Rep:
|
I was going to suggest K3b, it's really good. What problems are you having with it. Maybe we can get it to work for you. There is also XCDRoast which is supposed to be good but I haven't tried it.
Good Luck,
Ted.
|
|
|
08-28-2003, 10:56 PM
|
#3
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
Yeah, I see it recommended quite a bit (XCDRoast) but I personally find it amazingly complicated and lacking simplicity (for a newbie).
Eroaster is a much nicer front end, as well as GTKCombust.
I also suggest looking into a command line application called cdcopy, built by a member of this site  :
http://simplylinux.punted.net/Installingcdcopy.html
Cool
|
|
|
08-28-2003, 11:22 PM
|
#4
|
Member
Registered: Aug 2003
Location: Grand Rapids, MI
Distribution: Red Hat Linux
Posts: 39
Rep:
|
I'm a fan of ERoaster.
|
|
|
08-28-2003, 11:44 PM
|
#5
|
LQ Guru
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141
Rep:
|
Bah! They ALL are front ends to the real tools.
# 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
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
# 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
|
|
|
08-29-2003, 06:25 AM
|
#6
|
Member
Registered: May 2003
Posts: 598
Rep:
|
Why on earth would you want to type out all this:
cdrecord -v speed=<burning speed> dev=<your device> /path/to/foo.iso
When you could just click "Copy CD?"
And what if you want to burn multiple files from multiple directories or resourses? You'd spend half the day typing and I'd have my files dragged and dropped and burned on a CD and gone fishing by the time you got done typing all that stuff. GUI's were invented to make our lives easier.
Ted.
|
|
|
08-29-2003, 06:37 AM
|
#7
|
Member
Registered: Mar 2003
Location: Harrisburg, PA
Distribution: Gentoo, Debian, Ubuntu, Red Hat/CentOS
Posts: 719
Rep:
|
Quote:
Originally posted by mooreted
Why on earth would you want to type out all this:
|
well some of us actually prefer the command line, but you are right that the gui can make lives less complicated and I do use it at times. The point fancy is trying to make is that most gui apps are just a pretty picture on top of very powerful CLI tools. By getting comfortable with the real programs one can configure and command a great deal more from a tool. If you learn how to use cdrecord you will be at home on any *nix computer and you'll also learn a bit more about what makes it tick. When I am feeling lazy I use xcdroast. Although it has screwed me a few times when burning .iso's It is not supposed to be all that friendly, but I had to read a lot more docs when I used to use nero that I ever did with xcdroast. Try it - disks are cheap 
|
|
|
08-29-2003, 08:35 AM
|
#8
|
LQ Guru
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141
Rep:
|
copy/paste and using the up arrow (bash history) are extremely easy in Linux.
If I haven't used a command I want recently (up arrow goes through your last commnads) I have a text file with my handiest commands. I paste them into an x terminal and edit it with the exact path , etc. I want and then press enter. It usually is much faster than remembering a sequence of clicks needed to do it for me. I love ease of use and user friendliness.
Why hide the hammer so that you can't see the nail with a GUI?
Last edited by fancypiper; 08-29-2003 at 02:04 PM.
|
|
|
08-29-2003, 01:54 PM
|
#9
|
Member
Registered: May 2003
Posts: 598
Rep:
|
Well, I was mostly just messing with you but now I'll have to try cdrecord from the command-line so I have a legitimate bitch later. Can't really talk about what I haven't tried. But K3b is still really nice. My problem is that I'm at college 13 hours a day. School sure is messing with my Linux experience.
Have a good one,
Ted.
|
|
|
08-29-2003, 02:06 PM
|
#10
|
Senior Member
Registered: May 2003
Location: Sydney, Nova Scotia, Canada
Distribution: slackware
Posts: 4,185
Rep:
|
Quote:
Originally posted by mooreted
Why on earth would you want to type out all this:
cdrecord -v speed=<burning speed> dev=<your device> /path/to/foo.iso
When you could just click "Copy CD?"
Ted.
|
well i personally only typed it once cause in the .bashrc file i have a line :
alias makecd='cdrecord --dev=0,0,0 -speed=20 -eject'
so whenever i am using the CLI all i type is:
makecd nameoffile
so when you learn little tricks you'll see the benefits of the command line...
|
|
|
08-29-2003, 02:16 PM
|
#11
|
LQ Guru
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141
Rep:
|
Too much typing! I would alias that as "burn" 
|
|
|
08-29-2003, 02:24 PM
|
#12
|
Member
Registered: May 2003
Posts: 598
Rep:
|
Yeah, aliases are sweet. They make life easier. What I wonder is when I want to backup a bunch of stuff I would have to type something like:
makecd /backups/programs/*.*; /backups/documents/finances/*.doc; /backups/documents/finances/*.xlr; /backups/documents/computing/passwords/*.txt; /backups/documents/computing/satellite/*.txt; /backups/linux/*.rpm; /backups/linux/drivers/*.rpm;
It seems like it would be easier to just drag and drop the files where they need to go. That's a lot of typing and not even a tenth of all the folders I have on my two drives and every folder has a bunch of subfolders. It seems like I would have to spend the day typing.
Have a good one,
Ted.
|
|
|
08-29-2003, 05:05 PM
|
#13
|
Senior Member
Registered: May 2003
Location: Sydney, Nova Scotia, Canada
Distribution: slackware
Posts: 4,185
Rep:
|
Quote:
Originally posted by fancypiper
Too much typing! I would alias that as "burn"
|
hahahh
as of you mooreted, i agree that is alot of typing, but if that is a frequent command that you would issue alot, then you could just make it a script, and just run:
./scriptname
and all that will be executed...so again, you would only have to type that command once, and make it ease with a script...
|
|
|
08-29-2003, 06:58 PM
|
#14
|
Member
Registered: May 2003
Posts: 598
Rep:
|
Right, and for my static directories I do have a script. But you can see that the CLI also has it's limitations. There are many tools used in computing and the GUI is one of them. I believe in using all the useful tools at my disposal.
Boy, did this discussion get off the track.
Try K3b, if it's not working let us know what's wrong and we can help you fix it.
Thanks for the great discussion.
Ted.
|
|
|
08-29-2003, 10:28 PM
|
#15
|
Member
Registered: Aug 2003
Distribution: Alpine
Posts: 69
Original Poster
Rep:
|
Where can i get the library files for k3b
|
|
|
All times are GMT -5. The time now is 02:55 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
|
|