This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
set -x | |
template=`xe template-list name-label="Ubuntu Lucid Lynx 10.04 (64-bit)" --minimal` | |
vm=`xe vm-install template=$template new-name-label=vm-label` | |
network=`xe network-list bridge=xenbr0 --minimal` | |
vif=`xe vif-create vm-uuid=$vm network-uuid=$network device=0` | |
xe vm-param-set uuid=$vm other-config:install-repository=http://archive.ubuntu.com/ubuntu | |
xe vm-param-set uuid=$vm PV-args="auto-install/enable=true interface=auto netcfg/dhcp_timeout=600 hostname=vm-host-name domain=mydomain.is.best" | |
xe vm-start uuid=$vm |
Once your VM is created you can shutdown it, export it to XVA image. Later on we can restore the VM by simply importing it back. We can use the XVA file as well to create further more VMs for testing.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xe vm-export filename=vm-label1-export1.xva vm=vm-label | |
for i in $(seq 2 10); do | |
name="vm-$i" | |
echo -n "creating vm $name " | |
uuid=$(xe vm-import filename=vm-label1-export1.xva preserve=false) | |
xe vm-param-set name-label=$name uuid=$uuid | |
xe vm-start vm=$name | |
done |
http://wiki.xen.org/wiki/Installing_Linux_on_Kronos
http://krypted.com/tag/list_domains
Docs on Citrix site:
http://docs.vmd.citrix.com/XenServer/6.2.0/1.0/en_gb/
XenServer 6.2.0 Technical FAQ
XenServer 6.2.0 Release Notes
XenServer Product Documentation
/
No comments:
Post a Comment