LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices


Reply
  Search this Thread
Old 08-08-2006, 11:06 AM   #1
btrail
Guest
 
Posts: n/a
Post Trying to find an app to burn a Linux ISO


I've tried Nero Express on my Dell XP system to create a Linux boot CD off the Mandrake One .iso image and it won't read any ISO files. Any suggestions on a program that will read the ISO and burn it bootable to my CDROM burner-DVD reader combo drive.

I've also tried a shareware app WinImage and it won't burn the ISO image either.

Brad Trail
btrail
Rochester, NY

Last edited by btrail; 08-08-2006 at 11:10 AM.
 
Old 08-08-2006, 11:50 AM   #2
*Xenny*
Member
 
Registered: Jul 2006
Posts: 34

Rep: Reputation: 15
Umm... maybe I've got the wrong end of the stick about what you mean, but I've used nero to burn iso images without a problem. What exactly are you doing to try and burn it?

Sorry if you know this already, but you know you have to actually chose from the menu to make an image (I think it's the file menu - I don't have nero in linux so can't check), rather than clicking on the burn button like you normally would?

Apologies if I've got the wrong idea about what you mean!

Xenny
 
Old 08-08-2006, 11:55 AM   #3
eno_on
LQ Newbie
 
Registered: Oct 2004
Distribution: Gentoo
Posts: 25

Rep: Reputation: 15
I used the nero trial to do it
 
Old 08-08-2006, 08:36 PM   #4
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
Welcome to LQ. Have you considered just doing it from the command line? Assuming you've downloaded the ISO image and verified the checksum, just
Code:
cdrecord -v speed=8 dev=0,0,0 -data <filename>
You can adjust the speed to whatever is appropriate for your system (although I never burn faster than 8X or 16X due to the risk of getting a coaster, regardless of the rated speed of my CD-RW) and your device may be at a different location (eg, 0,1,0 or something else, you can use "cdrecord -scanbus" to find out)

Also, this is not a hardware question, so I'm moving it to General

Last edited by J.W.; 08-08-2006 at 08:37 PM.
 
Old 08-09-2006, 12:04 PM   #5
benjithegreat98
Senior Member
 
Registered: Dec 2003
Location: Shelbyville, TN, USA
Distribution: Fedora Core, CentOS
Posts: 1,019

Rep: Reputation: 45
I assume you meant you wanted to burn it using windows. Here's ISO Burn: http://tinyapps.co.uk/isoburn/

That should do the trick for ya!
 
Old 08-09-2006, 01:58 PM   #6
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
One thing that impresses me about some Linux distros: Right-click on an .iso file and select "burn to CD".
Try THAT on your Windows box!!!!
 
Old 08-09-2006, 02:09 PM   #7
benjithegreat98
Senior Member
 
Registered: Dec 2003
Location: Shelbyville, TN, USA
Distribution: Fedora Core, CentOS
Posts: 1,019

Rep: Reputation: 45
Actually, besides ISOBurn I have ImgBurn installed on my computer, which is what I used to burn iso files to cds/dvds in windows.

So I tried to right click an .ISO file and I was able to choose "Burn Using ImgBurn". It just depends on what you have installed on your computer.

Sorry, I couldn't resist.
 
Old 08-09-2006, 02:45 PM   #8
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Quote:
Originally Posted by benjithegreat98
Actually, besides ISOBurn I have ImgBurn installed on my computer, which is what I used to burn iso files to cds/dvds in windows.

So I tried to right click an .ISO file and I was able to choose "Burn Using ImgBurn". It just depends on what you have installed on your computer.

Sorry, I couldn't resist.
Touche (accent mark supressed)

The point was that many Linux distros have this built it--don't have to add anything.
 
Old 08-09-2006, 03:05 PM   #9
aysiu
Senior Member
 
Registered: May 2005
Distribution: Ubuntu with IceWM
Posts: 1,775

Rep: Reputation: 86
I created a tutorial on burning ISOs in Windows with CDBurnerXP.
It uses Ubuntu as an example, but the same procedure applies for any Linux distro.
http://www.psychocats.net/ubuntu/iso.html
 
Old 08-09-2006, 08:24 PM   #10
w3bd3vil
Senior Member
 
Registered: Jun 2006
Location: Hyderabad, India
Distribution: Fedora
Posts: 1,191

Rep: Reputation: 49
Alcohol 120%, is my choice on winxp.
 
Old 08-10-2006, 03:21 AM   #11
alred
Member
 
Registered: Mar 2005
Location: singapore
Distribution: puppy and Ubuntu and ... erh ... redhat(sort of) :( ... + the venerable bsd and solaris ^_^
Posts: 658
Blog Entries: 8

Rep: Reputation: 31
previously , i never have any problem with this one on windows :: http://isorecorder.alexfeinman.com/isorecorder.htm

try it , after you have sucessfully install linux , you can saftly delete your windows(probably backup your media files onto linux partitions)... as people are saying , you can do the samething in linux without any problem at all ...


goodluck !!


.
 
Old 08-10-2006, 12:16 PM   #12
btrail
Guest
 
Posts: n/a
Getting resolution and an ISO burn

Hello and thanks for all the helpful suggestions.

I tried three applications to burn the ISO image on my XP box before I found one that was refreshing and just did the trick to get me the bootable Linux Mandriva One CD done.

I had tried Nero Express and had trouble with ISO at all (Express?)
I then tried CDRWIN and that didn't do it.
I tried one other shareware app w/o success.
The one that worked for me was DeepBurner.

I'm running Mandriva One now. Thanks much!

Brad in Rochester, NY
 
Old 08-10-2006, 12:24 PM   #13
btrail
Guest
 
Posts: n/a
Quote:
Originally Posted by J.W.
Welcome to LQ. Have you considered just doing it from the command line? Assuming you've downloaded the ISO image and verified the checksum, just
Code:
cdrecord -v speed=8 dev=0,0,0 -data <filename>
You can adjust the speed to whatever is appropriate for your system (although I never burn faster than 8X or 16X due to the risk of getting a coaster, regardless of the rated speed of my CD-RW) and your device may be at a different location (eg, 0,1,0 or something else, you can use "cdrecord -scanbus" to find out)

Also, this is not a hardware question, so I'm moving it to General
Thanks JW. I was not in Linux yet at this point. I'm out of the water now. I found a Windows app to burn the Mandriva One CD and get me to Linux.

Thanks again.

Brad in Rochester, NY
 
Old 08-10-2006, 12:31 PM   #14
btrail
Guest
 
Posts: n/a
Quote:
Originally Posted by *Xenny*
Umm... maybe I've got the wrong end of the stick about what you mean, but I've used nero to burn iso images without a problem. What exactly are you doing to try and burn it?

Sorry if you know this already, but you know you have to actually chose from the menu to make an image (I think it's the file menu - I don't have nero in linux so can't check), rather than clicking on the burn button like you normally would?

Apologies if I've got the wrong idea about what you mean!

Xenny
My copy of Nero Express seems to be limited. It won't open a .iso file!

HOWEVER, now that I go back and review I see that it does allow the .iso file type and I had missed it. My Windows XP configuration did not however assign the file type to Nero Express so ... my bad.

My apologies to Nero and to all of you!!!

Thanks Xenny for commenting on this thread.

Have a day!

Btrail
 
Old 08-10-2006, 05:46 PM   #15
colinstu
Member
 
Registered: Apr 2005
Posts: 113

Rep: Reputation: 15
http://www.linuxquestions.org/linux/...using_Freeware

My fave ISO burning program, also the only one that ever worked.

Last edited by colinstu; 08-10-2006 at 05:48 PM.
 
  


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
how to burn an iso file in linux? Mikesoft Linux - Newbie 5 07-13-2006 08:06 AM
Burn iso image in linux android6011 Linux - Software 1 06-25-2006 10:30 AM
Nero Burn Process Failed[Trying to burn ISo of PCliveilnux Os] Chaosbringer Linux - Software 3 02-02-2006 06:09 AM
k3b error with audio cd burn (no prob with iso burn) bluem Linux - Newbie 1 04-16-2004 08:05 AM
linux newb help iso burn NewbGhostShells Slackware 18 08-29-2003 08:52 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > General

All times are GMT -5. The time now is 10:50 AM.

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