Thanks Puja for your prompt reply
Would the following step create the new Guest i.e DOMU namesd "xmexample1"
1.yum install xen
yum install virt-manager
2.create a partition of atleast 1GB
Eg:we take partition created as sda7
3.vim /etc/xen/xmexample1
Now make following changes in configuration file
kernel="/boot/(Xen Kernel path)
You will get the kernel path from /boot i.e vmlinuz.xen2.1..copy the filename and paste it
memory=1024
name="xyz"
disk=['phy:sda7,sda7,w']
root="/dev/sda7 ro"
4.xm create xmexample1
xm list
5.service xend restart
reboot
What about the below step i.e virt-install ? What does it mean? I am sorry but i m not clear what the need for this if we have already created DOMU i.e "xmexample1" in above step?
Appriciate if you please clear this doubt? I am dumb in XEN
Now do the following:
yum install virt-install
To check the details about virt-install
yum whatprovides virt-install
Real Time Virtualization
If virtualization is to be done through command prompt:I have taken the file names as an eg,it will be different for your setup.Here we are installing a kickstart file already present in the server
virt-install -p --vnc --noautoconsole --name=abc --ram=256 --vcpus=1 --file/dev/sda7 --location=http://server1.example.com/pub --extra-args="ks=nfs:server1.example.com:/kickstart/small.cfg network noipv6"
or
If you want to install OS through CDROM using virtualization then:If anything is mounted already on the current partition,create a new partition.Because each time you want to add a new domain and install a OS,a new partition must be created
virt-install --vnc --noautoconsole --os-type='windows' --os-variant='vista'
--name=VISTA --ram=1024 --vcpus=1 --file=/dev/sda7 --location=/dev/dvd
After this is done go on Applications->System Tools->Virtual Machine Manager
You will see a new domain as abc.Open that domain and insert a CD for installation and the run.
Alternate methd through graphical method:
Applications->System Tools->Virtual Machine Manager
File->New Machine (specify all the details,it is similar to the one done through command prompt like partition no,RAM size,para virtualization or full virtualization etc)