I've got a bunch of Xen 3.4 DomUs that are currently running as HVM because of our infrastructure (Kickstart which doesn't handle Xen PVM yet). Both DomU and Dom0 are RHEL5 machines. If I understand the documentation and configuration correctly, it would suffice to install kernel-xen
on the DomUs, replace hvm
with pvm
in the .xsp
files and set the correct boot loader. But has anyone tried this, is this really this easy?
Asked
Active
Viewed 1,992 times
4
faultyserver
- 1,904
- 1
- 16
- 20
Nikolai Prokoschenko
- 553
- 1
- 7
- 21
-
+1 for asking here, I hope to see many of the common questions that hit the xen-users list show up here so the answers can be kept current and appear more prominently in search results. The xen wiki has never been able to accomplish the prior. – Tim Post Oct 26 '09 at 13:03
3 Answers
1
You'll probably want to be sure that you have the serial console configured correctly (note that it's hvc0 or xvc0 under paravirt instead of ttyS0).
Depending on the kernel version you may also run into issues with your block devices being force-renamed from hda or sda to xvda. (This happens with paravirt_ops-style kernels; usually 2.6.27 and later, or so).
Evan Broder
- 811
- 5
- 5
0
Yep, that's pretty much how you do it. Nothing particularly exciting about it, I've done it a few times (Debian machines rather than RHEL, but there's no differences that should matter).
womble
- 95,029
- 29
- 173
- 228
0
Don't forget to add hvc0/xvc0 to the /etc/securetty list, if you hope to console in as root.
Tim Post
- 1,515
- 13
- 25