Guest User

VM configuration

a guest
Apr 16th, 2021
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. <domain type="kvm">
  2. <name>PracticalBinaryAnalysis</name>
  3. <uuid>xxx</uuid>
  4. <memory unit="KiB">4194304</memory>
  5. <currentMemory unit="KiB">4194304</currentMemory>
  6. <vcpu placement="static">2</vcpu>
  7. <os>
  8. <type arch="x86_64" machine="pc-i440fx-focal">hvm</type>
  9. <boot dev="hd"/>
  10. </os>
  11. <features>
  12. <acpi/>
  13. <apic/>
  14. <vmport state="off"/>
  15. </features>
  16. <cpu mode="host-model" check="partial"/>
  17. <clock offset="utc">
  18. <timer name="rtc" tickpolicy="catchup"/>
  19. <timer name="pit" tickpolicy="delay"/>
  20. <timer name="hpet" present="no"/>
  21. </clock>
  22. <on_poweroff>destroy</on_poweroff>
  23. <on_reboot>restart</on_reboot>
  24. <on_crash>destroy</on_crash>
  25. <pm>
  26. <suspend-to-mem enabled="no"/>
  27. <suspend-to-disk enabled="no"/>
  28. </pm>
  29. <devices>
  30. <emulator>/usr/bin/qemu-system-x86_64</emulator>
  31. <disk type="file" device="disk">
  32. <driver name="qemu" type="qcow2"/>
  33. <source file="/media/liberator/Eden-Data/VM-Storage/PracticalBinaryAnalysis.qcow2"/>
  34. <target dev="hda" bus="ide"/>
  35. <address type="drive" controller="0" bus="0" target="0" unit="0"/>
  36. </disk>
  37. <controller type="usb" index="0" model="ich9-ehci1">
  38. <address type="pci" domain="0x0000" bus="0x00" slot="0x05" function="0x7"/>
  39. </controller>
  40. <controller type="usb" index="0" model="ich9-uhci1">
  41. <master startport="0"/>
  42. <address type="pci" domain="0x0000" bus="0x00" slot="0x05" function="0x0" multifunction="on"/>
  43. </controller>
  44. <controller type="usb" index="0" model="ich9-uhci2">
  45. <master startport="2"/>
  46. <address type="pci" domain="0x0000" bus="0x00" slot="0x05" function="0x1"/>
  47. </controller>
  48. <controller type="usb" index="0" model="ich9-uhci3">
  49. <master startport="4"/>
  50. <address type="pci" domain="0x0000" bus="0x00" slot="0x05" function="0x2"/>
  51. </controller>
  52. <controller type="pci" index="0" model="pci-root"/>
  53. <controller type="ide" index="0">
  54. <address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x1"/>
  55. </controller>
  56. <controller type="virtio-serial" index="0">
  57. <address type="pci" domain="0x0000" bus="0x00" slot="0x06" function="0x0"/>
  58. </controller>
  59. <interface type="network">
  60. <mac address="52:54:00:e2:56:e5"/>
  61. <source network="default"/>
  62. <model type="e1000"/>
  63. <address type="pci" domain="0x0000" bus="0x00" slot="0x03" function="0x0"/>
  64. </interface>
  65. <serial type="pty">
  66. <target type="isa-serial" port="0">
  67. <model name="isa-serial"/>
  68. </target>
  69. </serial>
  70. <console type="pty">
  71. <target type="serial" port="0"/>
  72. </console>
  73. <channel type="spicevmc">
  74. <target type="virtio" name="com.redhat.spice.0"/>
  75. <address type="virtio-serial" controller="0" bus="0" port="1"/>
  76. </channel>
  77. <input type="keyboard" bus="ps2"/>
  78. <input type="tablet" bus="usb">
  79. <address type="usb" bus="0" port="1"/>
  80. </input>
  81. <input type="mouse" bus="ps2"/>
  82. <graphics type="spice">
  83. <listen type="none"/>
  84. </graphics>
  85. <sound model="ich6">
  86. <address type="pci" domain="0x0000" bus="0x00" slot="0x04" function="0x0"/>
  87. </sound>
  88. <video>
  89. <model type="qxl" ram="65536" vram="65536" vgamem="16384" heads="1" primary="yes"/>
  90. <address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x0"/>
  91. </video>
  92. <redirdev bus="usb" type="spicevmc">
  93. <address type="usb" bus="0" port="2"/>
  94. </redirdev>
  95. <redirdev bus="usb" type="spicevmc">
  96. <address type="usb" bus="0" port="3"/>
  97. </redirdev>
  98. <memballoon model="virtio">
  99. <address type="pci" domain="0x0000" bus="0x00" slot="0x07" function="0x0"/>
  100. </memballoon>
  101. </devices>
  102. </domain>
  103.  
Add Comment
Please, Sign In to add comment