<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.openvz.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jmlowe</id>
	<title>OpenVZ Virtuozzo Containers Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.openvz.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jmlowe"/>
	<link rel="alternate" type="text/html" href="https://wiki.openvz.org/Special:Contributions/Jmlowe"/>
	<updated>2026-05-15T17:14:41Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Veinfo&amp;diff=6332</id>
		<title>Veinfo</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Veinfo&amp;diff=6332"/>
		<updated>2008-08-14T04:03:25Z</updated>

		<summary type="html">&lt;p&gt;Jmlowe: New page: category:resource management The fields of '''/proc/vz/veinfo''' are as follows:  VEID    CLASSID    Number of Processes    IPADD&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[category:resource management]]&lt;br /&gt;
The fields of '''/proc/vz/veinfo''' are as follows:&lt;br /&gt;
&lt;br /&gt;
VEID    CLASSID    Number of Processes    IPADD&lt;/div&gt;</summary>
		<author><name>Jmlowe</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Making_template_tools_to_work_on_x86_64&amp;diff=5911</id>
		<title>Making template tools to work on x86 64</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Making_template_tools_to_work_on_x86_64&amp;diff=5911"/>
		<updated>2008-05-19T18:32:57Z</updated>

		<summary type="html">&lt;p&gt;Jmlowe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes an (unofficial) hack to make OpenVZ template tools work on an x86_64 box.&lt;br /&gt;
&lt;br /&gt;
There isn't much of a reason to run a 64bit container; however, there a memory management benefits to be had from running a 64bit hardware node.  The problem is that the OpenVZ template tools only work on x86. The setx86_64 breaks distributions based on rpm 4.3.x which includes CentOS4/RHEL4.  The steps I took to make this work with a RHEL5.1-x86_64 hardware node and the standard 32bit templates are as follows:&lt;br /&gt;
&lt;br /&gt;
*  Get and build Python 2.4.5 having exported CFLAGS=&amp;quot;-m32&amp;quot; and LD_FLAGS=&amp;quot;-m32&amp;quot; into /usr/local/python-2.4.5-32 by using --prefix=/usr/local/python-2.4.5-32 as an argument to configure&lt;br /&gt;
*  Download ez_setup from http://peak.telecommunity.com/DevCenter/EasyInstall and run /usr/local/python-2.4.5-32/bin/python ez_setup.py (this will make some things easier)&lt;br /&gt;
*  download and install ElementTree-1.2.6 (easy_install)&lt;br /&gt;
*  download and install libxml2-python-2.6.9, you will need to have libxml-devel.i386 and libxslt-devel.i386 already installed (ftp://xmlsoft.org/libxml2/python/)&lt;br /&gt;
*  download and install urlgrabber-3.1.0 (http://linux.duke.edu/projects/urlgrabber/download/)&lt;br /&gt;
*  /usr/local/python-2.4.5-32/bin/easy_install pysqlite, make sure you have sqlite-devel installed&lt;br /&gt;
*  replace /usr/bin/python with /usr/local/python-2.4.5-32/bin/python in /usr/share/vzyum/yum-cli/yummain.py, /usr/share/vzyum/yum-cli/cli.py, /usr/share/vzyum/bin/yum&lt;br /&gt;
*  modify /usr/share/vzpkg/functions change get_pythonver to run your custom version of python and not the system version&lt;br /&gt;
&lt;br /&gt;
[[Category: Templates]]&lt;br /&gt;
[[Category: HOWTO]]&lt;br /&gt;
[[Category: Troubleshooting]]&lt;/div&gt;</summary>
		<author><name>Jmlowe</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Making_template_tools_to_work_on_x86_64&amp;diff=5805</id>
		<title>Making template tools to work on x86 64</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Making_template_tools_to_work_on_x86_64&amp;diff=5805"/>
		<updated>2008-04-17T20:46:00Z</updated>

		<summary type="html">&lt;p&gt;Jmlowe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There isn't much of a reason to run a 64bit container; however, there a memory management benefits to be had from running a 64bit hardware node.  The problem is that the OpenVZ tools are all compiled for 32bits and rely on the hardware node having 32 bit python.  The setx86_64 breaks distributions based on rpm 4.3.x which includes CentOS4/RHEL4.  The steps I took to make this work with a RHEL5.1-x86_64 hardware node and the standard 32bit templates are as follows:&lt;br /&gt;
&lt;br /&gt;
*  Get and build Python 2.4.5 having exported CFLAGS=&amp;quot;-m32&amp;quot; and LD_FLAGS=&amp;quot;-m32&amp;quot; into /usr/local/python-2.4.5-32 by using --prefix=/usr/local/python-2.4.5-32 as an argument to configure&lt;br /&gt;
*  Download ez_setup from http://peak.telecommunity.com/DevCenter/EasyInstall and run /usr/local/python-2.4.5-32/bin/python ez_setup.py (this will make some things easier)&lt;br /&gt;
*  download and install cElementTree-1.2.6&lt;br /&gt;
*  download and install libxml2-python-2.6.9, you will need to have libxml-devel.i386 and libxslt-devel.i386 already installed&lt;br /&gt;
*  download and install urlgrabber-3.1.0&lt;br /&gt;
*  /usr/local/python-2.4.5-32/bin/easy_install pysqlite, make sure you have sqlite-devel installed&lt;br /&gt;
*  replace /usr/bin/python with /usr/local/python-2.4.5-32/bin/python in /usr/share/vzyum/yum-cli/yummain.py, /usr/share/vzyum/yum-cli/cli.py, /usr/share/vzyum/bin/yum&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please excuse the roughness of this document, I wanted to capture what I did while it was fresh and I will clean it up.&lt;br /&gt;
&lt;br /&gt;
[[Category: Templates]]&lt;br /&gt;
[[Category: HOWTO]]&lt;br /&gt;
[[Category: Troubleshooting]]&lt;/div&gt;</summary>
		<author><name>Jmlowe</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Making_template_tools_to_work_on_x86_64&amp;diff=5804</id>
		<title>Making template tools to work on x86 64</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Making_template_tools_to_work_on_x86_64&amp;diff=5804"/>
		<updated>2008-04-17T20:44:04Z</updated>

		<summary type="html">&lt;p&gt;Jmlowe: New page: There isn't much of a reason to run a 64bit container; however, there a memory management benefits to be had from running a 64bit hardware node.  The problem is that the OpenVZ tools are a...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There isn't much of a reason to run a 64bit container; however, there a memory management benefits to be had from running a 64bit hardware node.  The problem is that the OpenVZ tools are all compiled for 32bits and rely on the hardware node having 32 bit python.  The setx86_64 breaks distributions based on rpm 4.3.x which includes CentOS4/RHEL4.  The steps I took to make this work with a RHEL5.1-x86_64 hardware node and the standard 32bit templates are as follows:&lt;br /&gt;
&lt;br /&gt;
*  Get and build Python 2.4.5 having exported CFLAGS=&amp;quot;-m32&amp;quot; and LD_FLAGS=&amp;quot;-m32&amp;quot; into /usr/local/python-2.4.5-32 by using --prefix=/usr/local/python-2.4.5-32 as an argument to configure&lt;br /&gt;
*  Download ez_setup from http://peak.telecommunity.com/DevCenter/EasyInstall and run /usr/local/python-2.4.5-32/bin/python ez_setup.py (this will make some things easier)&lt;br /&gt;
*  download and install cElementTree-1.2.6&lt;br /&gt;
*  download and install libxml2-python-2.6.9, you will need to have libxml-devel.i386 and libxslt-devel.i386 already installed&lt;br /&gt;
*  download and install urlgrabber-3.1.0&lt;br /&gt;
*  /usr/local/python-2.4.5-32/bin/easy_install pysqlite, make sure you have sqlite-devel installed&lt;br /&gt;
*  replace /usr/bin/python with /usr/local/python-2.4.5-32/bin/python in /usr/share/vzyum/yum-cli/yummain.py, /usr/share/vzyum/yum-cli/cli.py, /usr/share/vzyum/bin/yum&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please excuse the roughness of this document, I wanted to capture what I did while it was fresh and I will clean it up.&lt;/div&gt;</summary>
		<author><name>Jmlowe</name></author>
		
	</entry>
</feed>