Results 1 to 5 of 5

Thread: Burning an ISO to hard disk drive to boot.

Hybrid View

  1. #1
    Join Date
    Apr 2010
    Beans
    11
    Distro
    Ubuntu 10.04 Lucid Lynx

    Exclamation Burning an ISO to hard disk drive to boot.

    Hello all.

    I bought a Macbook Pro recently and have been using that nearly exclusively. Without much use for my old Windows 7 netbook anymore, I decided to go back to Ubuntu. One minor problem, though. When I booted up Windows 7 on my netbook, I got a "BOOTMGR not found" error message. Without thinking of it too much, I decided to completely forget Windows 7.

    On to the actual problem now; because I have no CD drive (netbook, mind you) I have no way of actually using an Ubuntu CD. I am, however, in possession of a hard disk drive that can hold an ISO image.

    Is there a way I can burn an ISO image to a hard disk drive on my Mac so I can then boot from that drive on my netbook?

    If not, I will just buy or borrow a USB CD drive. I don't want to spend money, though! Thanks all.

  2. #2
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: Burning an ISO to hard disk drive to boot.

    Bootmgr not found is an issue with the Widows partition. Usually Windows installs to two partitions and the first is just a hidden 100MB boot/repair partition that calls the bootmgr from the main partition. Have you tried f8 from BIOS screen to see if you can get into Windows repair console?

    How to Boot to the System Recovery Options in Windows 7
    http://www.sevenforums.com/tutorials...y-options.html
    http://www.sevenforums.com/tutorials...ot-record.html
    http://windows7ultimate.windowsreins...indexthumbs.ht

    I do not know how from a MAC. And it may not be possible as Mac use an older UEFI boot not MBR.

    But you can just install grub2's boot loader to a drive and use a simple grub.cfg menu entry to loop mount an ISO file directly.

    This will boot an ISO from a hard drive.
    ISO Booting with Grub 2 from Hard drive - drs305
    https://help.ubuntu.com/community/Grub2/ISOBoot
    Examples - you may copy & edit for your path & ISO version
    https://help.ubuntu.com/community/Gr...OBoot/Examples
    http://ubuntuforums.org/showthread.php?t=1549847
    Boot ISO from harddrive. To install it would have to be different partition
    [SOLVED] Using grub 2 to boot an iso off hard drive old examples
    http://ubuntuforums.org/showthread.php?t=1535864
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  3. #3
    Join Date
    Jun 2011
    Location
    Tainan City, Taiwan
    Beans
    5
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Burning an ISO to hard disk drive to boot.

    D
    Last edited by RayChangTW; October 28th, 2012 at 01:05 AM. Reason: Misunderstanding: I re-read the OP's post and this is for burning CD

  4. #4
    Join Date
    Apr 2010
    Beans
    223

    Re: Burning an ISO to hard disk drive to boot.

    Yes you can, but only for Ubuntu 12.04 Image and later. But burning an Image to a hard disk drive is not a good idea, instead you'd better use a flash drive.

    Just use dd to write the image file to the flash disk, then boot the computer from it.
    Code:
    sudo dd if=Ubuntu.iso of=/dev/sdc bs=4M
    An alternative way is to write grub2 stage 1 to some hard drive, put the image file to some partition , then boot from the hard drive and then boot LIVE system from the image file. In this case it's not limited to 12.04 nor higher. You can use Ubuntu 10.04 for example. The basic syntax in grub2 cli to boot from an ISO file is
    Code:
    set root=(hd1,X)
    loopback loop /Ubuntu.iso
    linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/Ubuntu.iso --noeject --
    initrd (loop)/casper/initrd.lz
    boot
    And to write grub2 state1 to some hard drive, you must have a copy of that and use dd again.

  5. #5
    Join Date
    Oct 2012
    Location
    In a house
    Beans
    43

    Re: Burning an ISO to hard disk drive to boot.

    Quote Originally Posted by Drop D View Post
    Hello all.

    On to the actual problem now; because I have no CD drive (netbook, mind you) I have no way of actually using an Ubuntu CD. I am, however, in possession of a hard disk drive that can hold an ISO image.

    Is there a way I can burn an ISO image to a hard disk drive on my Mac so I can then boot from that drive on my netbook?

    If not, I will just buy or borrow a USB CD drive. I don't want to spend money, though! Thanks all.
    I don't think a HDD is capable of booting from an ISO, so either try a flash drive if you have one or use your mate's CD drive.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •