Advertisement
gusibsd

Untitled

Mar 1st, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. kernel = "vmlinuz"
  2. ramdisk = "initrd.gz"
  3.  
  4. #============================================================================
  5. # TO BOOT INSTALLED SYSTEM
  6. #
  7. # Comment all of the above installation options and uncomment the
  8. # below instead
  9. #============================================================================
  10.  
  11. #bootloader="pygrub"
  12.  
  13. #============================================================================
  14. # STANDARD OPTIONS
  15. #============================================================================
  16. #
  17. # The following options are common to both installation time and normal booting.
  18. #
  19. # Only a subset of the available options are included below.
  20. # See /usr/share/doc/xen-utils-common/examples for full examples.
  21.  
  22. #----------------------------------------------------------------------------
  23.  
  24. # Initial memory allocation (in megabytes) for the new domain.
  25. memory = 512
  26.  
  27. # A name for your domain. All domains must have different names.
  28. name = "debian"
  29.  
  30. # Number of Virtual CPUS to use, default is 1
  31. vcpus = 2
  32.  
  33. #----------------------------------------------------------------------------
  34. # Define network interfaces.
  35.  
  36. vif = ['bridge=bridge0']
  37.  
  38. #----------------------------------------------------------------------------
  39. # Define disks
  40.  
  41. disk = [
  42. 'phy:/dev/zvol/dades/debian,xvda,rw',
  43. 'phy:/dev/zvol/dades/debian_1,xvda,rw'
  44. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement