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.
|
 |
|
10-10-2004, 07:02 PM
|
#1
|
LQ Newbie
Registered: Aug 2004
Posts: 21
Rep:
|
Burning an ISO disk image on Linux
Hello,
I have a Linux ISO file which is a disk image of a Linux operating system called Knoppix. I simply want to burn the ISO file so that it creates a disk image on a CD. Then I can boot from the CD and quickly run a Linux operating system.
This sounds easy but each time I've tried to burn the .ISO file as a disk image, it gets burned as a file, so the CD winds up having one large ISO file and is not bootable. I need a disk image so I can boot Linux off the CD.
I'm looking for a CD burning program for Linux where I can burn an ISO as a disk image. I know there are programs in Windows like Nero, but I want a Linux app. Can anyone recommend a good burning app here?
Thanks
|
|
|
10-10-2004, 07:07 PM
|
#2
|
Member
Registered: Sep 2004
Distribution: Ubuntu, Mepis
Posts: 83
Rep:
|
K3b it kicks ass 
|
|
|
10-10-2004, 07:26 PM
|
#3
|
LQ Newbie
Registered: Jul 2004
Location: Humble, TX
Distribution: Linspire & M$
Posts: 6
Rep:
|
Burning an ISO.
K3B is a great CD burner program for Linux and it has plenty of power and flexibility. If that is what you want, go for it. However, I have burned numerous bootable Linux CD's from MS Windows with no problems. I like Burn4Free. Roxio and Nero are the most popular commercial pgms. Whichever program you use, there is no conflict, since the ISO file format is a universal CD file format that is supported by most any OS. Just be sure that you set up the software to burn to the ISO file system.
|
|
|
10-10-2004, 08:31 PM
|
#4
|
Member
Registered: Oct 2003
Distribution: Slackware 12.2, Ubuntu 9.04
Posts: 477
Rep:
|
With k3b, it's a simple as going to tools -> cd -> burn image, selecting the iso, and then burning. Doesn't get much simpler right? Well, good luck and have fun with knoppix.
|
|
|
10-10-2004, 09:53 PM
|
#5
|
Senior Member
Registered: Nov 2003
Location: Orlando FL
Distribution: Debian
Posts: 1,765
Rep:
|
you are running linux, so i would highly sujest cdrecord.
very fast and powerful CLI burning tool that can do exactly what you ask...
here is an example of the command i use on my laptop to burn ise files
Code:
cdrecord dev=0,0,0 speed=2 /home/ray/file.iso
done from root. now i have to put the speed=2 as i have a very pore CDRW in my laptop and if i burn an iso any faster then that im SOL, but most ppl can leave the speed=X out of the command and just let it go do its thing.
Last edited by Lleb_KCir; 10-11-2004 at 01:11 AM.
|
|
|
10-10-2004, 09:57 PM
|
#6
|
Member
Registered: Jul 2003
Location: Seattle, WA
Distribution: Kubuntu 14.04 LTS
Posts: 915
Rep:
|
In my opinion, both cdrecord and k3b are suitable for the task of burning ISO images. In fact, k3b does call cdrecord internally.
If I had the choice, I'd go with k3b. It's just so much easier because you can do everything in GUI.
|
|
|
10-10-2004, 10:44 PM
|
#7
|
LQ Newbie
Registered: Aug 2004
Posts: 21
Original Poster
Rep:
|
Thanks to all of you for the tips on burning ISOs.
I'm running RH9 and just tried to install K3B. Yikes, SO many dependencies:
rpm -ivh k3b*.rpm
warning: k3b-0.11.17-0.0.rh90.kde.i386.rpm: V3 DSA signature: NOKEY, key ID ff6382fa
error: Failed dependencies:
kdelibs >= 6:3.3 is needed by k3b-0.11.17-0.0.rh90.kde
libFLAC++.so.2 is needed by k3b-0.11.17-0.0.rh90.kde
libFLAC.so.4 is needed by k3b-0.11.17-0.0.rh90.kde
libasound.so.2 is needed by k3b-0.11.17-0.0.rh90.kde
libid3-3.8.so.3 is needed by k3b-0.11.17-0.0.rh90.kde
libkwalletclient.so.1 is needed by k3b-0.11.17-0.0.rh90.kde
libsamplerate.so.0 is needed by k3b-0.11.17-0.0.rh90.kde
libsamplerate.so.0(libsamplerate.so.0.0) is needed by k3b-0.11.17-0.0.rh90.kde
qt >= 1:3.3 is needed by k3b-0.11.17-0.0.rh90.kde
Next I tried to install just one of these components (kdelibs) and got another failure message with a HUGE list of additional dependencies. I've been tinkering for hours and finally just ran redhat-config-packages and tried to install the KDE development packages, but because I've run up2date already, this fails and says I need a whole bunch of kde related packages installed first. What a nightmare!
Any easy way I can install the WHOLE KDE desktop and development environments without 50 million dependency messages? At this rate I'll never get k3b installed.
Thanks
|
|
|
10-10-2004, 10:51 PM
|
#8
|
LQ Guru
Registered: Jul 2003
Distribution: Gentoo 2004.2: Who needs exmmpkg when you have emerge?
Posts: 1,795
Rep:
|
As Lleb suggested, try CDRecord. Specifically, try this:
cdrecord -v -data dev=0,0,0 /path/to/the/isofile.iso
The -v switch switches on verbose mode, and -data CDRecord to burn the iso and expand it.
|
|
|
10-10-2004, 10:53 PM
|
#9
|
Senior Member
Registered: Dec 2001
Location: 35.7480° N, 95.3690° W
Distribution: Debian, Gentoo, Red Hat, Solaris
Posts: 2,070
Rep:
|
cdrecord and it's only one little command to burn an iso. Much, much easier than a gui.
|
|
|
10-11-2004, 01:15 AM
|
#10
|
Senior Member
Registered: Nov 2003
Location: Orlando FL
Distribution: Debian
Posts: 1,765
Rep:
|
as for resolving the RPM dependancies try this:
YUM
once you have it setup and have the proper yum.conf configured it is as simple as typing:
yum install k3b
then it will do all the hard work for you. you can also use yum update and yum upgrade to update all packages that are available for upgrading. very nice tool for a RPM based distro. ill never run an other RPM base distro without YUM.
|
|
|
10-11-2004, 01:56 AM
|
#11
|
Member
Registered: May 2004
Location: Singapore
Distribution: Debian woody and debian sarge
Posts: 188
Rep:
|
I think there are other guis for cdrecord, like xcdroast which don't bring in hell lot of dependencies.
|
|
|
10-11-2004, 01:58 AM
|
#12
|
Member
Registered: May 2004
Location: Singapore
Distribution: Debian woody and debian sarge
Posts: 188
Rep:
|
hmm... doesn't knopix use kde?? What distro are you burning the cd on?
ignore ignore....
Last edited by mirradric; 10-11-2004 at 01:59 AM.
|
|
|
10-11-2004, 02:05 AM
|
#13
|
LQ Newbie
Registered: Oct 2004
Posts: 2
Rep:
|
Use cdrecord i found it to be the best however if you want gui's then i must admit i was impressed with kb3 but u say u have a problem with deps well i say download synaptic GREAT PACKAGE MANAGER it will slove all ur problems and help u basid on your distro
|
|
|
10-11-2004, 03:33 AM
|
#14
|
Member
Registered: Oct 2003
Distribution: Slackware 12.2, Ubuntu 9.04
Posts: 477
Rep:
|
With RH9, installing k3b is going to require installing the kde and its libs, so you're much better off with xcdroast or just regular old cdrecord. I would just do cdrecord, but if you do need the gui, you should go with xcdroast.
|
|
|
10-11-2004, 03:36 AM
|
#15
|
Senior Member
Registered: Dec 2001
Location: 35.7480° N, 95.3690° W
Distribution: Debian, Gentoo, Red Hat, Solaris
Posts: 2,070
Rep:
|
gnome toaster comes with Red Hat 9 if you really want a gui. But for iso's I have better luck with cdrecord.
|
|
|
All times are GMT -5. The time now is 05:45 AM.
|
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
|
|