June 14, 20179 yr 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
June 14, 20179 yr 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>
Archived
This topic is now archived and is closed to further replies.