Xen Dom0: Difference between revisions

From Alpine Linux
No edit summary
(actually hyphens, not underscores)
(8 intermediate revisions by 7 users not shown)
Line 2: Line 2:


<pre>
<pre>
# apk add xen xen-hypervisor
# apk add xen xen-hypervisor seabios
</pre>
</pre>


This will install Xen Hypervisor and Tools (both xl and xend) and all the required packages. The next step is to modify your extlinux.cfg and add an entry to boot Xen:
Then [https://wiki.alpinelinux.org/wiki/Enable_Community_Repository enable the community repositories] and install ovmf from community.
 
<pre>
# apk add ovmf
</pre>
 
 
'''seabios''' and '''ovmf''' provide BIOS and UEFI firmwares for Xen virtual machines. Please be advised that ovmf is part of the community repository. In order to download it, you will need to add the community repository to [[Alpine_Linux_package_management#Packages_and_Repositories|your configuration]].
 
This will install Xen Hypervisor, xl cli command and all the required packages. The next step is to modify your extlinux.conf and add an entry to boot Xen:


Normal boot:
Normal boot:
Line 23: Line 32:


{{Note|<nowiki>remember to change <YOUR-DISK-UUID> with the UUID of your boot disk (you can copy it from the normal Alpine Linux boot entry)</nowiki>}}
{{Note|<nowiki>remember to change <YOUR-DISK-UUID> with the UUID of your boot disk (you can copy it from the normal Alpine Linux boot entry)</nowiki>}}
com1=115200,8n1 console=com1 redirect xen and dom0 to a physical serial port, handy if you want to use a serial null modem cable instead of a keyboard+monitor combo or if your server has an kvm over ip.


It's also a good idea to check [http://wiki.xen.org/wiki/Xen_Hypervisor_Boot_Options Xen Boot options] and set dom0_mem, dom0_vcpus_pin and dom0_max_vcpus at least.
It's also a good idea to check [http://wiki.xen.org/wiki/Xen_Hypervisor_Boot_Options Xen Boot options] and set dom0_mem, dom0_vcpus_pin and dom0_max_vcpus at least.
Line 29: Line 40:


<pre>
<pre>
# echo "xen_netback" >> /etc/modules
# echo "xen-netback" >> /etc/modules
# echo "xen_blkback" >> /etc/modules
# echo "xen-blkback" >> /etc/modules
# echo "tun" >> /etc/modules
# echo "tun" >> /etc/modules
</pre>
</pre>
Line 37: Line 48:


<pre>
<pre>
# rc-update add udev sysinit
rc-update add xenconsoled
# rc-update add udev-postmount
rc-update add xendomains
# rc-update add xencommons
rc-update add xenqemu
rc-update add xenstored
</pre>
 
Ok, now you have a fully functional Xen install, it's time to boot into it.
 
<pre>
# reboot
</pre>
</pre>


If you need the xm toolstack, also add xend to startup services:
Also remember to configure at least one network bridge following the [[Bridge]] guide.
 
== Loop Devices ==
If you plan to use more than 8 DomU's, you may need to increase the amount of loop-devices in your Dom0.
 
In Alpine Linux, you will need to add the ''max_loop'' option to the ''loop'' module, then add the loop module to your initramfs.
 
Start by populating <code>/etc/modprobe.d/loop.conf</code> with the module options:


<pre>
<pre>
# rc-update add xend
# touch /etc/modprobe.d/loop.conf
# echo "options loop max_loop=32" > /etc/modprobe.d/loop.conf
</pre>
</pre>


Ok, now you have a fully functional Xen install, it's time to boot into it.
Now reflect the module options in the initramfs:


<pre>
<pre>
# mkinitfs
# reboot
# reboot
</pre>
</pre>
Also remember to configure at least one network bridge following the [[Bridge]] guide.


== See also ==
== See also ==

Revision as of 22:03, 27 November 2019

This guide will show you how to perform a Xen Dom0 install on a HDD, so you can have your Dom0. The first step is to perform a normal HDD install of Alpine Linux, which can be accomplished following the guide Install to disk. Once the install is finished, and you have rebooted into your new system, it's time to install the Xen packages:

# apk add xen xen-hypervisor seabios

Then enable the community repositories and install ovmf from community.

# apk add ovmf


seabios and ovmf provide BIOS and UEFI firmwares for Xen virtual machines. Please be advised that ovmf is part of the community repository. In order to download it, you will need to add the community repository to your configuration.

This will install Xen Hypervisor, xl cli command and all the required packages. The next step is to modify your extlinux.conf and add an entry to boot Xen:

Normal boot:

LABEL xen
  KERNEL /boot/mboot.c32
  APPEND /boot/xen.gz --- /boot/grsec root=UUID=<YOUR-DISK-UUID> modules=ext4 --- /boot/grsec.gz

Serial console boot:

LABEL xen
  KERNEL /boot/mboot.c32
  APPEND /boot/xen.gz com1=115200,8n1 console=com1 --- /boot/grsec root=UUID=<YOUR-DISK-UUID> modules=ext4  --- /boot/grsec.gz
Note: remember to change <YOUR-DISK-UUID> with the UUID of your boot disk (you can copy it from the normal Alpine Linux boot entry)

com1=115200,8n1 console=com1 redirect xen and dom0 to a physical serial port, handy if you want to use a serial null modem cable instead of a keyboard+monitor combo or if your server has an kvm over ip.

It's also a good idea to check Xen Boot options and set dom0_mem, dom0_vcpus_pin and dom0_max_vcpus at least.

The next step is to load the necessary kernel modules for Xen, we will add them to /etc/modules, so they will be loaded automatically on boot:

# echo "xen-netback" >> /etc/modules
# echo "xen-blkback" >> /etc/modules
# echo "tun" >> /etc/modules

The last step is to configure startup services, we will need udev and xencommons at least to be started on boot:

rc-update add xenconsoled
rc-update add xendomains
rc-update add xenqemu
rc-update add xenstored

Ok, now you have a fully functional Xen install, it's time to boot into it.

# reboot

Also remember to configure at least one network bridge following the Bridge guide.

Loop Devices

If you plan to use more than 8 DomU's, you may need to increase the amount of loop-devices in your Dom0.

In Alpine Linux, you will need to add the max_loop option to the loop module, then add the loop module to your initramfs.

Start by populating /etc/modprobe.d/loop.conf with the module options:

# touch /etc/modprobe.d/loop.conf
# echo "options loop max_loop=32" > /etc/modprobe.d/loop.conf

Now reflect the module options in the initramfs:

# mkinitfs
# reboot

See also