add iso partition to xenserver

link: https://adamscheller.com/systems-administration/xenserver-local-iso-storage-new-partition/ for posterity… figure out the name of the volume group (something like name-uuid) pvscan   create the new volume lvcreate -L 150G -n ISOs name-uuid   find the volume you just created lvscan |grep ISO   create the filesystem mkfs.ext2 /dev/other-name-uuid/ISOs   make the mount point mkdir /mnt/isos   Read more

using vm-snapshot to clone a domU

CAUTION: with the following the system is up so you risk file loss, data loss, etc. — use at your own risk. Ideally you would shutdown your domU and use vm-export rather than vm-snapshot. make a snapshot xe vm-snapshot vm=name new-name-label=name-foo this returns a uuid xe vm-export vm=UUID filename=|bzip2 > Read more