This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
xen:installation_of_dom0 [2011/02/21 17:59] Luc Nieland |
xen:installation_of_dom0 [2011/03/27 20:38] (current) Luc Nieland [Debian 6.0 (Squeeze)] |
||
---|---|---|---|
Line 1: | Line 1: | ||
======Building a Dom0====== | ======Building a Dom0====== | ||
+ | Various distributions deliver the base to create a Xen domain-zero (Dom0). Below a few step-by-step CLI guides on getting from bare metal to a Dom0 for PV or HVM. | ||
- | =====Debian 6.0 (Squeeze)===== | + | |
+ | |||
+ | =====Suse===== | ||
+ | ====OpenSuse 11.4==== | ||
+ | |||
+ | Install a minimal OpenSuse system, choose "other" graphical system, and choose text based server). | ||
+ | |||
+ | Now the system will come up with a graphical-screen (ROTFL). With ctrl-alt-F1 change to text-mode and log in with the created non-root user during install. Use: | ||
+ | sudo su - root | ||
+ | passwd root | ||
+ | to go to a more comfortable area. | ||
+ | Use yast: | ||
+ | * system -> System Services (expert): to the default runlevel to 3 | ||
+ | * security -> firewall: to disable the firewall | ||
+ | * system -> System Services: to enable sshd in runlevel 3 (and optionally 4 and 5) | ||
+ | * network -> to change the hostname and make the IP static | ||
+ | |||
+ | |||
+ | Update the repository cache and install generic usefull stuff: | ||
+ | zypper up | ||
+ | zypper install mc iputils man bind-util vim-enhanced tcpdump rsync wget iftop | ||
+ | |||
+ | |||
+ | De-install conflicting patterns-openSUSE-minimal_base because it conflicts with python-base (which is a requirement for xen-tools). As a replacment for the package, some other packages need to be installed: | ||
+ | zypper remove patterns-openSUSE-minimal_base | ||
+ | zypper install python-base | ||
+ | |||
+ | Install the Xen hypervisor and a Xen-enabled Linux dom0 kernel: | ||
+ | zypper install libvirt xen-libs xen kernel-xen xen-tools | ||
+ | |||
+ | Extra stuff: | ||
+ | zypper install libvirt-python vm-install xen-tools-ioemu | ||
+ | |||
+ | |||
+ | The required linux-bridging stuff has come as dependency. | ||
+ | |||
+ | |||
+ | Change the default boot-option to the Xen hypervisor in /boot/grub/menu.lst | ||
+ | default 0 | ||
+ | |||
+ | |||
+ | |||
+ | As an alternative for cmdline zypper; use Yast: Virtualization -> Install Hypervisor and Tools -> Xen to install the Xen hypervisor and dom0 patched kernel. Resolve the python dependency also. | ||
+ | |||
+ | |||
+ | |||
+ | ===bridged networking=== | ||
+ | Configure in /etc/xen/xend-config.sxp the following network-script line (and comment out all other network-script lines): | ||
+ | (network-script hannibal-xen-network-script) | ||
+ | |||
+ | Leave the line as is: | ||
+ | (vif-script vif-bridge) | ||
+ | |||
+ | |||
+ | And create a file (chmod +x) /etc/xen/scripts/hannibal-xen-network-script (an example for a machine with four physical NIC's: | ||
+ | #!/bin/sh | ||
+ | BASEPATH=/etc/xen/scripts | ||
+ | ${BASEPATH}/network-bridge "$@" vifnum=0 netdev=eth0 bridge=xenbr0 | ||
+ | ${BASEPATH}/network-bridge "$@" vifnum=1 netdev=eth1 bridge=xenbr1 | ||
+ | ${BASEPATH}/network-bridge "$@" vifnum=2 netdev=eth2 bridge=xenbr2 | ||
+ | ${BASEPATH}/network-bridge "$@" vifnum=3 netdev=eth3 bridge=xenbr3 | ||
+ | |||
+ | |||
+ | ===References=== | ||
+ | Further reading: | ||
+ | * [[http://www.scribd.com/doc/43734889/Xen3-Zero-to-Xen-From-the-CLI-in-OpenSuSE-10-3]] | ||
+ | * | ||
+ | |||
+ | |||
+ | |||
+ | =====Debian===== | ||
+ | ====Debian 6.0 (Squeeze)==== | ||
Install a minimal Debian-6 (Squeeze) system in 64 bit. Preferrably configured with a static IP-configuration in /etc/network/interfaces (ie. DHCP-client not tested). | Install a minimal Debian-6 (Squeeze) system in 64 bit. Preferrably configured with a static IP-configuration in /etc/network/interfaces (ie. DHCP-client not tested). | ||
Line 16: | Line 88: | ||
- | ====grub2 corrections and tuning==== | + | ===grub2 corrections and tuning=== |
IMPORTANT! Make the Xen-hypervisor the first boot entry in grub: | IMPORTANT! Make the Xen-hypervisor the first boot entry in grub: | ||
mv /etc/grub.d/20_linux_xen /etc/grub.d/08_linux_xen | mv /etc/grub.d/20_linux_xen /etc/grub.d/08_linux_xen | ||
Line 33: | Line 105: | ||
- | ====bridged networking==== | + | ===bridged networking=== |
When the physical machine (ie the dom0) has more than 1 physical NIC, configure in /etc/xen/xend-config.sxp the following network-script line (and comment out all other network-script lines): | When the physical machine (ie the dom0) has more than 1 physical NIC, configure in /etc/xen/xend-config.sxp the following network-script line (and comment out all other network-script lines): | ||
(network-script hannibal-xen-network-script) | (network-script hannibal-xen-network-script) | ||
Line 44: | Line 116: | ||
#!/bin/sh | #!/bin/sh | ||
BASEPATH=/etc/xen/scripts | BASEPATH=/etc/xen/scripts | ||
- | ${BASEPATH}/network-bridge "$@" vifnum=0 netdev=eth0 bridge=xenbr0 | + | ${BASEPATH}/network-bridge "$@" vifnum=0 bridge=xenbr0 netdev=eth0 |
- | ${BASEPATH}/network-bridge "$@" vifnum=1 netdev=eth1 bridge=xenbr1 | + | ${BASEPATH}/network-bridge "$@" vifnum=1 bridge=xenbr1 netdev=eth1 |
- | ${BASEPATH}/network-bridge "$@" vifnum=2 netdev=eth2 bridge=xenbr2 | + | ${BASEPATH}/network-bridge "$@" vifnum=2 bridge=xenbr2 netdev=eth2 |
- | ${BASEPATH}/network-bridge "$@" vifnum=3 netdev=eth3 bridge=xenbr3 | + | ${BASEPATH}/network-bridge "$@" vifnum=3 bridge=xenbr3 netdev=eth3 |
Line 68: | Line 140: | ||
- | ===network devices=== | + | ==network devices== |
If your hardware has a firewire device, udev will automatically create network devices (i.e. ethN) for them. Great, is'n it :-) If you do not want this, edit /etc/udev/rules.d/70-persistent-net.rules and give them a proper name like firewN or completely disable them. | If your hardware has a firewire device, udev will automatically create network devices (i.e. ethN) for them. Great, is'n it :-) If you do not want this, edit /etc/udev/rules.d/70-persistent-net.rules and give them a proper name like firewN or completely disable them. | ||
Line 79: | Line 151: | ||
- | ====Refs==== | + | ===Refs=== |
See also: | See also: | ||
* [[http://wiki.debian.org/Xen]] | * [[http://wiki.debian.org/Xen]] | ||
Line 86: | Line 158: | ||
- | =====Debian 5.0 (Lenny)===== | + | ====Debian 5.0 (Lenny)==== |
See Debian 4.0 | See Debian 4.0 | ||
- | =====Debian 4.0 (Etch)===== | + | ====Debian 4.0 (Etch)==== |
- | ====Core OS and hypervisor==== | + | ===Core OS and hypervisor=== |
- | ===create a bootable system=== | + | ==create a bootable system== |
With the availability of 64-bit hardware in mind, we only use the AMD64 port of Debian Etch in order to create Xen enabled servers. There are several reasons for this decision, one of them is to avoid the TLS-issue's with the 32-bit Xen hypervisor on x86 CPU's. | With the availability of 64-bit hardware in mind, we only use the AMD64 port of Debian Etch in order to create Xen enabled servers. There are several reasons for this decision, one of them is to avoid the TLS-issue's with the 32-bit Xen hypervisor on x86 CPU's. | ||
Line 130: | Line 202: | ||
A reboot will complete the installation. | A reboot will complete the installation. | ||
- | ===Xen config=== | + | ==Xen config== |
In /etc/default/xendomains, the following option can be changed to: | In /etc/default/xendomains, the following option can be changed to: | ||
XENDOMAINS_SAVE="" | XENDOMAINS_SAVE="" | ||
Line 205: | Line 277: | ||
- | =====Debian 3.0 (Sarge)===== | + | ====Debian 3.0 (Sarge)==== |
- | ====Core operating system and hypervisor==== | + | ===Core operating system and hypervisor=== |
- | ===create a bootable system=== | + | ==create a bootable system== |
Start with the install of a minimal working Debian-sarge on your bare metal. Download a debian-31r2-i386-netinst.iso for this. At the end of the install procedure, answer no to the options task-select and dselect. As the result of this, you end up wit a minimal system. Use apt-get softwarepackagename to install stuff you need. For example ssh could be useful. | Start with the install of a minimal working Debian-sarge on your bare metal. Download a debian-31r2-i386-netinst.iso for this. At the end of the install procedure, answer no to the options task-select and dselect. As the result of this, you end up wit a minimal system. Use apt-get softwarepackagename to install stuff you need. For example ssh could be useful. | ||
Line 286: | Line 358: | ||
+ | =====Redhat===== | ||
- | =====Redhat 6===== | + | ====Redhat 6.x ==== |
- | RHEL6 does not ship Xen hypervisor or tools and does not ship Xen dom0 capable kernel. It can be build, see: http://wiki.xen.org/xenwiki/RHEL6Xen4Tutorial | + | RHEL-6 does not ship Xen hypervisor or tools and does not ship Xen dom0 capable kernel. |
+ | It can be build, see: http://wiki.xen.org/xenwiki/RHEL6Xen4Tutorial | ||
- | ======Dom0 additions====== | + | |
- | =====Debian===== | + | =====Dom0 additions===== |
- | ====Volume manager==== | + | |
+ | ====Debian==== | ||
+ | ===Volume manager=== | ||
We prefer to run our Xen guests from logical volumes instead of running them from loop mounted files. By default we choose to format the file systems of the Xen guests to xfs. | We prefer to run our Xen guests from logical volumes instead of running them from loop mounted files. By default we choose to format the file systems of the Xen guests to xfs. | ||
Install the necessary LVM and XFS packages: | Install the necessary LVM and XFS packages: |