[SOLVED] ISO not booting


Recommended Posts

Hi all,

I'm kinda new and I found that you can enlarge you're drive. After I've done that in unraid, and want toen boot a ISO to enlarge the partition it doesn't boot from that ISO. A error message shows briefly in White and Yellow letters.

 

I tried Hirens and some other iso's, all the same (no) result.

 

What is it that I miss.

 

BTW it's a Linux non OS Debian for Teamspeak

.

 

Verstuurd vanaf mijn Nexus 5X met Tapatalk

 

 

Link to comment

If you are trying to boot a VM with an ISO you will probably need to manually edit the XML to temporarily change the boot order.

<disk type='file' device='disk'>
      <driver name='qemu' type='raw' cache='writeback'/>
      <source file='/mnt/user/domains/Antergos/vdisk1.img'/>
      <target dev='hdc' bus='virtio'/>
      <boot order='1'/>
      <address type='pci' domain='0x0000' bus='0x02' slot='0x03' function='0x0'/>
    </disk>
    <disk type='file' device='cdrom'>
      <driver name='qemu' type='raw'/>
      <source file='/mnt/user/isos/Linux/antergos-17.5-x86_64.iso'/>
      <target dev='hda' bus='sata'/>
      <readonly/>
      <boot order='2'/>
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
    </disk>

In this example you would change boot order='1' to boot order='2' and 2 to 1, so the ISO is boot order='1' instead of 2, like this.

<disk type='file' device='disk'>
      <driver name='qemu' type='raw' cache='writeback'/>
      <source file='/mnt/user/domains/Antergos/vdisk1.img'/>
      <target dev='hdc' bus='virtio'/>
      <boot order='2'/>
      <address type='pci' domain='0x0000' bus='0x02' slot='0x03' function='0x0'/>
    </disk>
    <disk type='file' device='cdrom'>
      <driver name='qemu' type='raw'/>
      <source file='/mnt/user/isos/Linux/antergos-17.5-x86_64.iso'/>
      <target dev='hda' bus='sata'/>
      <readonly/>
      <boot order='1'/>
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
    </disk>

 

Link to comment
  • 2 years later...
  • JorgeB changed the title to [SOLVED] ISO not booting

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.