How to create VM using citrix xencenter
Introduction:
In this section we are going to see how to create a VM using citrix xen center tool.
Prerequisites:
Citrix xencenter tool.
Root login credentials oh hardware node.
Procedure:
Click on the hardware node connected with xencenter.
Now go to the VM menu and click on New VM…
Now select os template to be install on VM
Select for the other install media option by scrolling down.
Click next to continue
Now select the installation media as Install from ISO library
Now select the ubuntu-20.04 under ISO_IMAGES_LOCAL and click next
Now select the home server to place the VM.
Click next to continue.
Now select the number of CPUs and Memory for VM
Click next to continue.
Click on Add to add storage for the VM

After clicking the add enter the name for storage and select the size for the storage and click Add.

Click next to continue.
Click Create now to create VM.
The VM will be created now .
After the VM gets started select the VM and goto Console.
Now you can complete the ubuntu installation setup.
After installation setup is complete goto /etc/netplan/
backup the existing .yaml file as .yaml_bk
Create a new network.yaml file using vi command
Enter the network details,
network:
renderer: networkd
ethernets:
eth0:
dhcp4: false
addresses:
- 69.30.219.16X/29
routes:
- to: default
- via: 69.30.219.161
nameservers:
addresses: [8.8.8.8, 8.8.4.4]
version: 2
Note: Change the ip address with new ip replacing only x in addresses:
Save the file and exit.
To apply changes
sudo netplan apply
Conclusion:
Now the server is successfully configured under the hardware node.