LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-07-2010, 09:40 AM   #1
Infasoft
Member
 
Registered: Aug 2008
Location: Salem, Oregon
Distribution: Windows 7 home premium X86_64 | Linux
Posts: 63

Rep: Reputation: 15
Error with fedora live USB: extract_iso must be run before install_bootloader


Hi,
I am trying to burn an iso image to my USB drive via Fedora live USB creator. It doesent work though, here is the output:
Code:
opensuse.iso selected
Verifying filesystem...
Extracting live image to USB device...
Wrote to device at 2 MB/sec
extract_iso must be run before install_bootloader
LiveUSB creation failed!
extract_iso must be run before install_bootloader
Any suggestions? Thanks.
 
Old 01-08-2010, 09:07 AM   #2
Infasoft
Member
 
Registered: Aug 2008
Location: Salem, Oregon
Distribution: Windows 7 home premium X86_64 | Linux
Posts: 63

Original Poster
Rep: Reputation: 15
Any ideas? Could it be a bug in the program?
 
Old 01-08-2010, 11:04 AM   #3
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626
I doubt it is a bug.

I have used liveusbcreator enough to feel it is OK.

Check the shal or md4 or the disk or boot it to a VM and run it's own disk check.

Might have a bad download of the creator or the install is bad.

You should edit your post instead of a second post. Makes it look like it was answered.


Also check date on your creator. See this for how it gives that error. https://fedorahosted.org/pipermail/l...er/000040.html

Last edited by jefro; 01-08-2010 at 11:07 AM.
 
Old 01-09-2010, 11:40 AM   #4
Infasoft
Member
 
Registered: Aug 2008
Location: Salem, Oregon
Distribution: Windows 7 home premium X86_64 | Linux
Posts: 63

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by jefro View Post
I doubt it is a bug.

I have used liveusbcreator enough to feel it is OK.

Check the shal or md4 or the disk or boot it to a VM and run it's own disk check.

Might have a bad download of the creator or the install is bad.

You should edit your post instead of a second post. Makes it look like it was answered.


Also check date on your creator. See this for how it gives that error. https://fedorahosted.org/pipermail/l...er/000040.html
Hmm. I checked the code, but still couldn't find my problem. I know for sure my USB drive is capable of booting, but other programs like unetbootin don't work. My .iso file is the 64-bit opensuse 11.2 DVD (4.3GB). What should I do?
 
Old 02-24-2010, 06:04 AM   #5
retusj
LQ Newbie
 
Registered: Feb 2010
Posts: 2

Rep: Reputation: 0
Hello

I encountered this same problem today.

I have created fedora live usb sticks with the same installation of fedora liveUSBcreator successfully before.

I turned to the method of fedora liveUSBcreator after an failed attempt to
follow the method described at openSUSE :
# dd if=XXX.XXX of=/dev/sdX bs=4M;sync
followed by a script to create one more partion on the usb stick.

I am wondering if the openSUSE Live iso is different somehow from the fedora live iso?
 
Old 02-24-2010, 04:26 PM   #6
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626
I knew I had seen that error before. I think I did get around it somehow but see the below links. I think it is easier.
I think it fails also on the put multiple ISO's on a flash and boot directly to iso image.

http://en.opensuse.org/Live_USB_stick


http://www.pendrivelinux.com/usb-sus...drive-install/

http://www.pendrivelinux.com/search/opensuse
 
Old 10-07-2010, 02:51 AM   #7
LaurentC
LQ Newbie
 
Registered: Oct 2010
Posts: 1

Rep: Reputation: 0
Hello,
The error message comes from the creator.py file. Here is the code:
Code:
if not os.path.exists(os.path.join(self.dest, 'isolinux')):
  raise LiveUSBError('extract_iso must be run before '
   'install_bootloader')
So make sure there is a 'isolinux' directory at the root of your ISO file. For example, partedmagic ISO does not have it and liveUSB fails with this message.

Hope it helps.
Laurent
 
Old 10-31-2011, 06:03 AM   #8
adrianTNT
LQ Newbie
 
Registered: Jul 2011
Posts: 12

Rep: Reputation: Disabled
Lightbulb

I got same error today. And after trying another iso-to-stick tool, I got a prompt from the anti-spyware software telling me that a software is trying to access raw disk areas, etc. So: I am thinking that the above error might be due to antivirus software on computer.
 
Old 10-31-2011, 09:16 AM   #9
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
Trying to use distro X's live usb creation tool on an iso of distro Y is very likely to result in failure due to differences in how the systems are configured. With Fedora (and some other distros' iso files), you can use dd to create a bootable usb flash drive
Code:
 dd if=<distro's iso> of=<usb sevice> bs=4M
The downsides to this technique are:
1. If you screw up the device names appropriately, you can wipe your whole hard drive
2. No persistent storage
 
Old 09-10-2012, 04:41 PM   #10
PistonPL
LQ Newbie
 
Registered: Sep 2012
Posts: 1

Rep: Reputation: Disabled
Quote:
Hello,
The error message comes from the creator.py file. Here is the code:


Code:
if not os.path.exists(os.path.join(self.dest, 'isolinux')):
raise LiveUSBError('extract_iso must be run before '
'install_bootloader') So make sure there is a 'isolinux' directory at the root of your ISO file. For example, partedmagic ISO does not have it and liveUSB fails with this message.

Hope it helps.
Laurent
Laurent gave us reason why this error occours. Simply Try to write ISO to pendrive, if it fail probably "isolinux" is renamed or moved to subdirectory. Simply copy it to main dir and/or rename to "isolinux" and try to write ISO again. This time it will go ok.
 
  


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
is there a way to run 2 different linux OS's on 1 live usb? lampamp Linux - General 5 10-29-2009 10:50 AM
Member's of LQ that run Debian Live from usb? linus72 Debian 26 08-04-2009 02:44 PM
[SOLVED] Fedora Live USB Creator Question: Error comes up: "Missing Operating System" FedoraLinuxLover Linux - Laptop and Netbook 59 07-20-2009 02:56 PM
I run Fedora 9 and I boot from USB, how I run at startup Firewall and antivirus? gginis Linux - Software 3 06-08-2008 03:19 AM
Run Fedora as Live CD tombiz Fedora 1 07-16-2006 03:23 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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