LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 03-04-2010, 01:07 PM   #1
m1_davidson
LQ Newbie
 
Registered: Mar 2010
Posts: 6

Rep: Reputation: 0
Convert bootable USB into ISO


Hi Gurus,

I have a unique issue. Unique in the sense that I have only found the opposite of what I'm after so far. Here goes:

I have a special bootable "Linux" USB. Tested the USB and it boots up and builds any old PC - with an appropriate BIOS. I would like to convert this USB - better still its contents - to an ISO.

Reason? VMWare server doesn't support USB bootable BIOS at present. Not sure it ever will.

Any help much appreciated.
 
Old 03-04-2010, 01:31 PM   #2
smoker
Senior Member
 
Registered: Oct 2004
Distribution: Fedora Core 4, 12, 13, 14, 15, 17
Posts: 2,279

Rep: Reputation: 250Reputation: 250Reputation: 250
http://orgs.man.ac.uk/documentation/...b_3.html#SEC11

You must read Section 5 Configuration !

copy everything from your usb stick into the directory iso/

Follow the rest of the linked document.
 
Old 03-04-2010, 01:44 PM   #3
computerman1983
LQ Newbie
 
Registered: Aug 2009
Distribution: Ubuntu 9.10, Red Hat WS 4, CentOS, OpenBSD, and all windows flavs
Posts: 20

Rep: Reputation: 1
What version of VMware are you using. I know that VMware player 3.0.1 supports usb boot. I have built several sessions with it.
 
Old 03-04-2010, 03:22 PM   #4
m1_davidson
LQ Newbie
 
Registered: Mar 2010
Posts: 6

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by computerman1983 View Post
What version of VMware are you using. I know that VMware player 3.0.1 supports usb boot. I have built several sessions with it.
I am using VMware server 2.0.2 which doesn't support USB as a boot device. Will a VMware player-built OS work on VMware server? Thanks in advance.
 
Old 03-05-2010, 08:25 AM   #5
computerman1983
LQ Newbie
 
Registered: Aug 2009
Distribution: Ubuntu 9.10, Red Hat WS 4, CentOS, OpenBSD, and all windows flavs
Posts: 20

Rep: Reputation: 1
Yes it will. That's how I build mine and then move them to my production Vmware server. Let me know how it goes. Cheers!
 
Old 03-05-2010, 05:51 PM   #6
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,137
Blog Entries: 6

Rep: Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826
Code:
dd if=/dev/ad0s1 of=myimage.iso
dd which every distro of Linux and BSD is sure to have will make a .iso of any drive or folder. The above is a simple form of use. Substitute your own parameters.

man dd
Also lots of threads on it's usage.
 
Old 03-06-2010, 07:43 AM   #7
m1_davidson
LQ Newbie
 
Registered: Mar 2010
Posts: 6

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by teckk View Post
Code:
dd if=/dev/ad0s1 of=myimage.iso
dd which every distro of Linux and BSD is sure to have will make a .iso of any drive or folder. The above is a simple form of use. Substitute your own parameters.

man dd
Also lots of threads on it's usage.
Thanks. I have used that dd command before and even though I get the output file - it wasn't bootable. I then output the file as .img and converted to .iso, still no joys.

Any further help still welcome.
 
Old 03-06-2010, 07:49 AM   #8
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
what linux are you trying to make into a iso?

this linux didnt come as an iso initially?
 
Old 03-06-2010, 10:25 AM   #9
fbsduser
Member
 
Registered: Oct 2009
Distribution: Hackintosh, SlackWare
Posts: 267

Rep: Reputation: 30
You can't make a bootable CD iso off an usb image, the reason for this is that USB images use syslinux as bootloader (which can only be installed on FAT32) and CD isos use isolinux as bootloader (isolinux won't install on anything but iso9660). Your problem there is that while the image did copy correctly, to boot off a CD it needs a special tpye of boot sector and the iso9660 filesystem, none of which are present in the USB image (Note that dd'ing non-bootable data off USB to CD does work, it's only OS's that can't be transferred like that because they become unbootable).
 
Old 03-06-2010, 10:27 AM   #10
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
Provide more info as to the linux system on usb and whether it has been dd'd to usb or how did you install to usb?

Its easy enough to make a isolinux bootable iso even off a dd'd-to-usb image

gotta know what distro, etc first....
 
Old 03-06-2010, 10:37 AM   #11
m1_davidson
LQ Newbie
 
Registered: Mar 2010
Posts: 6

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by computerman1983 View Post
Yes it will. That's how I build mine and then move them to my production Vmware server. Let me know how it goes. Cheers!
Sorry mate, VMware player didn't boot from USB. Willing to try further suggestions.
 
Old 03-06-2010, 10:43 AM   #12
m1_davidson
LQ Newbie
 
Registered: Mar 2010
Posts: 6

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by linus72 View Post
what linux are you trying to make into a iso?

this linux didnt come as an iso initially?
OK, it is Linux distro that came in several bits from the OEM. You have to download various bits, run some Windows setup, copy the OEM ISO into a specific location and use the application from the Windows setup to create the bootable USB. Obviously I don't want to mention the OEM - as it might cause issues.

Essentially, I just want an environment where I can safely test things out before going to production. Each of their boxes cost about £50K.
 
Old 03-06-2010, 10:43 AM   #13
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
Please tell distro and how its on usb and I can tell you how-to-iso dude

just tell me exactly what is on USB, all the files folders
 
Old 03-06-2010, 01:10 PM   #14
m1_davidson
LQ Newbie
 
Registered: Mar 2010
Posts: 6

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by linus72 View Post
Please tell distro and how its on usb and I can tell you how-to-iso dude

just tell me exactly what is on USB, all the files folders
Thanks a million for your help so far. I have found an iso on the USB and been able to build the OS on VMWare - although no network connection is configurable (driver issues).

The OS is finjan - are you able to help with the network driver issues?
 
  


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 On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
RHEL 5 iso usb bootable. sunnybmv Linux - Newbie 11 02-24-2014 12:07 PM
[SOLVED] How to create an ISO image from a bootable USB pendrive jortalli Linux - Software 2 09-02-2009 06:46 AM
Installing a Linux ISO without a bootable CD Rom,USB or Nic gtjr92 Linux - Software 8 08-22-2009 12:24 PM
Create Bootable Simply Mepis USB drive from CD ISO duryodhan MEPIS 0 11-16-2006 11:23 PM
boot pc from a bootable-iso without a cd or usb-device psytroll Linux - General 1 02-23-2006 01:27 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

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