Score:1

การย้ายอิมเมจ w2016 จาก ESXi ไปยัง KVM ให้ข้อความ "ไม่มีอุปกรณ์ที่สามารถบู๊ตได้"

ธง br

ฉันกำลังพยายามย้ายอิมเมจ windows server 2016 จาก ESXi ไปยัง KVM แต่ฉันได้รับข้อผิดพลาด "No Bootable Devices" เมื่อฉันพยายามบูท

นี่คือผลลัพธ์ของคำสั่ง "virt-filesystems -a ~/VM.qcow2 --all --long --uuid -h"

ประเภทชื่อ ฉลาก VFS ขนาด MBR พาเรนต์ UUID
/dev/sda1 ระบบไฟล์ ntfs Recovery - 499M - CCCEA1FFCEA1E246
/dev/sda2 ระบบไฟล์ vfat - - 95M - AEA2-DC85
/dev/sda4 ระบบไฟล์ ntfs - - 49G - 903EA5533EA53360
/dev/sda1 พาร์ติชั่น - - - 499M /dev/sda -
/dev/sda2 พาร์ติชัน - - - 99M /dev/sda -
/dev/sda3 พาร์ติชั่น - - - 16M /dev/sda -
/dev/sda4 พาร์ติชั่น - - - 49G /dev/sda -
/dev/sda5 พาร์ติชัน - - - 256K /dev/sda -
/dev/อุปกรณ์ sda - - - 50G - -

นี่คือข้อความที่ตัดตอนมาจาก XML สำหรับ VM:

  <devices>
    <emulator>/usr/bin/qemu-system-x86_64</emulator>
    <disk type='file' device='disk'>
      <driver name='qemu' type='qcow2'/>
      <source file='/data/A-DMZ-New.qcow2'/>
      <target dev='sda' bus='sata'/>
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
    </disk>
    <controller type='usb' index='0' model='qemu-xhci' ports='15'>
      <address type='pci' domain='0x0000' bus='0x02' slot='0x00' function='0x0'/>
    </controller>
    <controller type='sata' index='0'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x1f' function='0x2'/>
    </controller>
    <controller type='pci' index='0' model='pcie-root'/>
    <controller type='pci' index='1' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='1' port='0x10'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0' multifunction='on'/>
    </controller>
    <controller type='pci' index='2' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='2' port='0x11'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x1'/>
    </controller>
    <controller type='pci' index='3' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='3' port='0x12'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x2'/>
    </controller>
    <controller type='pci' index='4' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='4' port='0x13'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x3'/>
    </controller>
    <interface type='bridge'>
      <mac address='52:54:00:22:4a:ce'/>
      <source bridge='br1'/>
      <model type='e1000e'/>
      <address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
    </interface>
    <serial type='pty'>
      <target type='isa-serial' port='0'>
        <model name='isa-serial'/>
      </target>
    </serial>
    <console type='pty'>
      <target type='serial' port='0'/>
    </console>
    <input type='tablet' bus='usb'>
      <address type='usb' bus='0' port='1'/>
    </input>
    <input type='mouse' bus='ps2'/>
    <input type='keyboard' bus='ps2'/>
    <graphics type='spice' autoport='yes'>
      <listen type='address'/>

batistuta09 avatar
vn flag
คุณแปลง vmdk เป็น qcow2 (เครื่องมืออะไร) ได้อย่างไร
br flag
ฉันใช้ qemu-img
batistuta09 avatar
vn flag
ตรวจสอบประเภทบัสใน xml ของ VM ลองเปลี่ยนเป็น bus=virtio
br flag
ฉันได้เพิ่ม XML ในคำถามแล้ว โปรดแจ้งให้เราทราบว่าฉันทำการแก้ไขที่แนะนำไว้ที่ไหน
Michael Hampton avatar
cz flag
https://docs.microsoft.com/en-us/windows/client-management/advanced-troubleshooting-boot-problems
Score:1
ธง vn

ลองเปลี่ยนประเภทรถเมล์เป็น อัจฉริยะ และกำหนดเป้าหมาย dev เป็น วีด้า ที่นี่:

<disk type='file' device='disk'>
  <driver name='qemu' type='qcow2'/>
  <source file='/data/A-DMZ-New.qcow2'/>
  <target dev='vda' bus='virtio'/>
  <address type='drive' controller='0' bus='0' target='0' unit='0'/>
</disk>
br flag
มันทำให้ฉันมีข้อผิดพลาด: การกำหนดค่าที่ไม่รองรับ: ดิสก์ virtio ไม่สามารถมีที่อยู่ประเภท 'ไดรฟ์'
br flag
ฉันแก้ไขเป็น: /usr/bin/qemu-system-x86_64
br flag
แต่ก็ยังไม่ทำงาน ผิดพลาดเหมือนเดิม

โพสต์คำตอบ

คนส่วนใหญ่ไม่เข้าใจว่าการถามคำถามมากมายจะปลดล็อกการเรียนรู้และปรับปรุงความสัมพันธ์ระหว่างบุคคล ตัวอย่างเช่น ในการศึกษาของ Alison แม้ว่าผู้คนจะจำได้อย่างแม่นยำว่ามีคำถามกี่ข้อที่ถูกถามในการสนทนา แต่พวกเขาไม่เข้าใจความเชื่อมโยงระหว่างคำถามและความชอบ จากการศึกษาทั้ง 4 เรื่องที่ผู้เข้าร่วมมีส่วนร่วมในการสนทนาด้วยตนเองหรืออ่านบันทึกการสนทนาของผู้อื่น ผู้คนมักไม่ตระหนักว่าการถามคำถามจะมีอิทธิพลหรือมีอิทธิพลต่อระดับมิตรภาพระหว่างผู้สนทนา