Advertisement
Querzion

etc-libvirt-hooks-qemu-d-winx-vm-vars.conf

Apr 5th, 2023 (edited)
801
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.89 KB | Source Code | 0 0
  1. ## VM Script Parameters
  2.  
  3. # How much memory we've assigned to the VM, in kibibytes
  4. VM_MEMORY=33554432
  5.  
  6. # Set the governor to use when the VM is on, and which
  7. # one we should return to once the VM is shut down
  8. VM_ON_GOVERNOR=performance
  9. VM_OFF_GOVERNOR=performance
  10.  
  11. # Set the powerprofiles ctl profile to performance when
  12. # the VM is on, and power-saver when the VM is shut down
  13. VM_ON_PWRPROFILE=performance
  14. VM_OFF_PWRPROFILE=performance
  15.  
  16. # Set which CPU's to isolate, and your system's total
  17. # CPU's. For example, an 8-core, 16-thread processor has
  18. # 16 CPU's to the system, numbered 0-15. For a 6-core,
  19. # 12-thread processor, 0-11. The SYS_TOTAL_CPUS variable
  20. # should always reflect this.
  21. #
  22. # You can define these as a range, a list, or both. I've
  23. # included some examples:
  24. #
  25. # EXAMPLE=0-3,8-11
  26. # EXAMPLE=0,4,8,12
  27. # EXAMPLE=0-3,8,11,12-15
  28. VM_ISOLATED_CPUS=0-5,12-17
  29. SYS_TOTAL_CPUS=0-23
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement