<?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=Eongaro</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=Eongaro"/>
	<link rel="alternate" type="text/html" href="https://wiki.openvz.org/Special:Contributions/Eongaro"/>
	<updated>2026-06-13T19:43:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Asterisk_from_source&amp;diff=6530</id>
		<title>Asterisk from source</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Asterisk_from_source&amp;diff=6530"/>
		<updated>2008-10-16T22:43:17Z</updated>

		<summary type="html">&lt;p&gt;Eongaro: added debian dependencies&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==General==&lt;br /&gt;
Asterisk is free and open source code to create software PBX server. See http://www.asterisk.org/ for details. The package runs perfectly  inside an OpenVZ [[container]]. Some users run up to 60 containers with Asterisk deployed for production per single [[hardware node]]. Although the easiest way to install Asterisk into a container is to use pre-build package from Linux distribution, occasionally one may need to have a possibility to build it from source tarball available on developer's site.&lt;br /&gt;
&lt;br /&gt;
In order to do so the following remarks are worth reading.&lt;br /&gt;
&lt;br /&gt;
== Building Asterisk in a [[CT]] ==&lt;br /&gt;
Asterisk PBX server itself is compiled out of the shelf in a [[container]] provided that development tools are installed. The functionality of the resulting executable is enough to support simple VoIP telephony.&lt;br /&gt;
=== Debian Dependencies ===&lt;br /&gt;
&amp;lt;pre&amp;gt;apt-get install build-essential libncurses-dev&amp;lt;/pre&amp;gt;&lt;br /&gt;
=== Compiling ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wget http://downloads.digium.com/pub/asterisk/releases/asterisk-x.x.xx.tar.gz&lt;br /&gt;
tar xzf asterisk-x.x.xx.tar.gz&lt;br /&gt;
cd asterisk-x.x.xx&lt;br /&gt;
./configure&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
make samples&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The last command is not needed in case you have your own configuration as it installs some sample configuration files.&lt;br /&gt;
To configure Asterisk itself see, for example, http://downloads.oreilly.com/books/9780596510480.pdf.&lt;br /&gt;
&lt;br /&gt;
=== MeetMe problem ===&lt;br /&gt;
Unfortunately, one particular module called MeetMe (conferencing tool) will be switched off from compilation. This happens due to external dependency on 'zaptel' package. Zaptel provides support for some hardware cards for FXO/FXS analog telephony marketed by Digium (the company behind Asterisk), and on top of that supplies so called &amp;lt;code&amp;gt;ztdummy&amp;lt;/code&amp;gt; kernel module. Ztdummy works like a simple metronome which is required to synchronize multiple sound streams in case of conference call. &lt;br /&gt;
&lt;br /&gt;
If you do not plan to use analog telephone lines, hence don't like in install the hardware, nothing is lost provided you run your HN with 2.6.XX kernel. You just need to play a little trick with Asterisk make system: download zaptel tarball from the same location as Asterisk itself, and copy it's header zaptel.h to location /usr/include/zaptel/zaptel.h in CT where you plan to build Asterisk. This tweaks MeetMe for installation.&lt;br /&gt;
&lt;br /&gt;
== HN configuration ==&lt;br /&gt;
Finally you need to make sure that on [[HN]] ztdummy kernel module is loaded and the access to &amp;lt;code&amp;gt;/dev/zap/pseudo&amp;lt;/code&amp;gt; device file is granted to the container:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
modprobe ztdummy&lt;br /&gt;
vzctl set 240 --devnodes zap/pseudo:rw --save&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:HOWTO]]&lt;/div&gt;</summary>
		<author><name>Eongaro</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=VPN_via_the_TUN/TAP_device&amp;diff=5656</id>
		<title>VPN via the TUN/TAP device</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=VPN_via_the_TUN/TAP_device&amp;diff=5656"/>
		<updated>2008-04-10T17:50:43Z</updated>

		<summary type="html">&lt;p&gt;Eongaro: Removed  a link to vpnprivacy.com - they were advertising on this page.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes how to use VPN via the TUN/TAP device inside a [[container]].&lt;br /&gt;
&lt;br /&gt;
== Kernel TUN/TAP support ==&lt;br /&gt;
OpenVZ supports VPN inside a container via kernel TUN/TAP module and device.&lt;br /&gt;
To allow container #101 to use the TUN/TAP device the following should be done:&lt;br /&gt;
&lt;br /&gt;
Make sure the '''tun''' module has been already loaded on the [[hardware node]]:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# lsmod | grep tun&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If it is not there, use the following command to load '''tun''' module:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# modprobe tun&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also add it into /etc/modules.conf to make sure it will be loaded on every reboot automatically.&lt;br /&gt;
&lt;br /&gt;
== Granting container an access to TUN/TAP ==&lt;br /&gt;
Allow your container to use the tun/tap device:&lt;br /&gt;
&lt;br /&gt;
 vzctl set 101 --devices c:10:200:rw --save&lt;br /&gt;
 vzctl set 101 --capability net_admin:on --save&lt;br /&gt;
&lt;br /&gt;
And create the character device file inside the container:&lt;br /&gt;
&lt;br /&gt;
 vzctl exec 101 mkdir -p /dev/net&lt;br /&gt;
 vzctl exec 101 mknod /dev/net/tun c 10 200&lt;br /&gt;
 vzctl exec 101 chmod 600 /dev/net/tun&lt;br /&gt;
&lt;br /&gt;
== Configuring VPN inside container ==&lt;br /&gt;
After the configuration steps above are done it is possible to use VPN software working with TUN/TAP inside&lt;br /&gt;
container just like on a usual standalone linux box.&lt;br /&gt;
&lt;br /&gt;
The following software can be used for VPN with TUN/TAP:&lt;br /&gt;
* Virtual TUNnel (http://vtun.sourceforge.net)&lt;br /&gt;
* OpenVPN (http://openvpn.sourceforge.net)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://vtun.sourceforge.net Virtual TUNnel]&lt;br /&gt;
* [http://openvpn.sourceforge.net OpenVPN]&lt;br /&gt;
&lt;br /&gt;
[[Category: HOWTO]]&lt;br /&gt;
[[Category: Networking]]&lt;/div&gt;</summary>
		<author><name>Eongaro</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Install_yum&amp;diff=3848</id>
		<title>Install yum</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Install_yum&amp;diff=3848"/>
		<updated>2007-12-26T23:53:49Z</updated>

		<summary type="html">&lt;p&gt;Eongaro: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This article is specific to CentOS, however the packages required for yum here are the same on other flavors''&lt;br /&gt;
&lt;br /&gt;
The below scripts installs all packages upon which yum depends for a 386 distro (Need separate 64 bit instructions)&lt;br /&gt;
&lt;br /&gt;
'''Please note''' - that the version numbers of the packages WILL change as later releases come out, it is up to you to ensure that the packages used are the latest.  If you find a package in this script has become deprecated, please update this page with the latest package so others do not have to search for it as well.&lt;br /&gt;
== CentOS 4 ==&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/gmp-4.1.4-3.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/readline-4.3-13.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-2.3.4-14.4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/libxml2-2.6.16-10.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/libxml2-python-2.6.16-10.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/expat-1.95.7-4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-elementtree-1.2.6-5.el4.centos.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/sqlite-3.3.6-2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-sqlite-1.1.7-1.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/elfutils-0.97.1-4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uhv http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/rpm-4.3.3-22_nonptl.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/rpm-python-4.3.3-22_nonptl.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-urlgrabber-2.9.8-2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://whiteboxlinux.osmirror.nl/4/en/os/i386/WhiteBox/RPMS/elfutils-libelf-0.97-5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uhv ftp://ftp.nluug.nl/pub/os/Linux/distr/CentOS/4.5/os/s390/CentOS/RPMS/centos-yumconf-4-4.5.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/yum-2.4.3-3.el4.centos.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
yum -y update&amp;lt;br&amp;gt;&lt;br /&gt;
== CentOS 5 ==&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/gmp-4.1.4-10.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/readline-5.1-1.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-2.4.3-19.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/libxml2-2.6.26-2.1.2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/libxml2-python-2.6.26-2.1.2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/expat-1.95.8-8.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-elementtree-1.2.6-5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/sqlite-3.3.6-2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-sqlite-1.1.7-1.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/elfutils-0.125-3.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/rpm-python-4.4.2-37.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/m2crypto-0.16-6.el5.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-urlgrabber-3.1.0-2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/yum-3.0.5-1.el5.centos.2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
yum -y update&amp;lt;br&amp;gt;&lt;br /&gt;
[[Category:HOWTO]]&lt;/div&gt;</summary>
		<author><name>Eongaro</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Install_yum&amp;diff=3847</id>
		<title>Install yum</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Install_yum&amp;diff=3847"/>
		<updated>2007-12-26T23:53:07Z</updated>

		<summary type="html">&lt;p&gt;Eongaro: Undo revision 3846 by Eongaro (Talk) - these instructions are for 386&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This article is specific to CentOS, however the packages required for yum here are the same on other flavors''&lt;br /&gt;
&lt;br /&gt;
The below scripts installs all packages upon which yum depends.&lt;br /&gt;
&lt;br /&gt;
'''Please note''' - that the version numbers of the packages WILL change as later releases come out, it is up to you to ensure that the packages used are the latest.  If you find a package in this script has become deprecated, please update this page with the latest package so others do not have to search for it as well.&lt;br /&gt;
== CentOS 4 ==&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/gmp-4.1.4-3.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/readline-4.3-13.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-2.3.4-14.4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/libxml2-2.6.16-10.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/libxml2-python-2.6.16-10.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/expat-1.95.7-4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-elementtree-1.2.6-5.el4.centos.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/sqlite-3.3.6-2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-sqlite-1.1.7-1.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/elfutils-0.97.1-4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uhv http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/rpm-4.3.3-22_nonptl.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/rpm-python-4.3.3-22_nonptl.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-urlgrabber-2.9.8-2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://whiteboxlinux.osmirror.nl/4/en/os/i386/WhiteBox/RPMS/elfutils-libelf-0.97-5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uhv ftp://ftp.nluug.nl/pub/os/Linux/distr/CentOS/4.5/os/s390/CentOS/RPMS/centos-yumconf-4-4.5.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/yum-2.4.3-3.el4.centos.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
yum -y update&amp;lt;br&amp;gt;&lt;br /&gt;
== CentOS 5 ==&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/gmp-4.1.4-10.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/readline-5.1-1.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-2.4.3-19.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/libxml2-2.6.26-2.1.2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/libxml2-python-2.6.26-2.1.2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/expat-1.95.8-8.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-elementtree-1.2.6-5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/sqlite-3.3.6-2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-sqlite-1.1.7-1.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/elfutils-0.125-3.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/rpm-python-4.4.2-37.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/m2crypto-0.16-6.el5.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-urlgrabber-3.1.0-2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/yum-3.0.5-1.el5.centos.2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
yum -y update&amp;lt;br&amp;gt;&lt;br /&gt;
[[Category:HOWTO]]&lt;/div&gt;</summary>
		<author><name>Eongaro</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Install_yum&amp;diff=3846</id>
		<title>Install yum</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Install_yum&amp;diff=3846"/>
		<updated>2007-12-26T23:43:10Z</updated>

		<summary type="html">&lt;p&gt;Eongaro: added more deps&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This article is specific to CentOS, however the packages required for yum here are the same on other flavors''&lt;br /&gt;
&lt;br /&gt;
The below scripts installs all packages upon which yum depends.&lt;br /&gt;
&lt;br /&gt;
'''Please note''' - that the version numbers of the packages WILL change as later releases come out, it is up to you to ensure that the packages used are the latest.  If you find a package in this script has become deprecated, please update this page with the latest package so others do not have to search for it as well.&lt;br /&gt;
== CentOS 4 ==&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/gmp-4.1.4-3.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/readline-4.3-13.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-2.3.4-14.4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/libxml2-2.6.16-10.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/libxml2-python-2.6.16-10.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/expat-1.95.7-4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-elementtree-1.2.6-5.el4.centos.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/sqlite-3.3.6-2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-sqlite-1.1.7-1.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/elfutils-0.97.1-4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uhv http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/rpm-4.3.3-22_nonptl.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/rpm-python-4.3.3-22_nonptl.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-urlgrabber-2.9.8-2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://whiteboxlinux.osmirror.nl/4/en/os/i386/WhiteBox/RPMS/elfutils-libelf-0.97-5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uhv ftp://ftp.nluug.nl/pub/os/Linux/distr/CentOS/4.5/os/s390/CentOS/RPMS/centos-yumconf-4-4.5.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/yum-2.4.3-3.el4.centos.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
yum -y update&amp;lt;br&amp;gt;&lt;br /&gt;
== CentOS 5 ==&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/rpm-devel-4.4.2-37.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/elfutils-libs-0.125-3.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/beecrypt-4.1.2-10.1.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/rpm-libs-4.4.2-37.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/libtermcap-2.0.8-46.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/elfutils-libelf-0.125-3.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/bzip2-libs-1.0.3-3.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/ncurses-5.5-24.20060715.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/gmp-4.1.4-10.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/readline-5.1-1.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-2.4.3-19.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/libxml2-2.6.26-2.1.2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/libxml2-python-2.6.26-2.1.2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/expat-1.95.8-8.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-elementtree-1.2.6-5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/sqlite-3.3.6-2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-sqlite-1.1.7-1.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/elfutils-0.125-3.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/rpm-python-4.4.2-37.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/m2crypto-0.16-6.el5.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-urlgrabber-3.1.0-2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/yum-3.0.5-1.el5.centos.2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
yum -y update&amp;lt;br&amp;gt;&lt;br /&gt;
[[Category:HOWTO]]&lt;/div&gt;</summary>
		<author><name>Eongaro</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Install_yum&amp;diff=3522</id>
		<title>Install yum</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Install_yum&amp;diff=3522"/>
		<updated>2007-10-10T18:31:56Z</updated>

		<summary type="html">&lt;p&gt;Eongaro: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This article is specific to CentOS, however the packages required for yum here are the same on other flavors''&lt;br /&gt;
&lt;br /&gt;
The below scripts installs all packages upon which yum depends.&lt;br /&gt;
&lt;br /&gt;
'''Please note''' - that the version numbers of the packages WILL change as later releases come out, it is up to you to ensure that the packages used are the latest.  If you find a package in this script has become deprecated, please update this page with the latest package so others do not have to search for it as well.&lt;br /&gt;
== CentOS 4 ==&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/gmp-4.1.4-3.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/readline-4.3-13.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-2.3.4-14.4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/libxml2-2.6.16-10.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/libxml2-python-2.6.16-10.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/expat-1.95.7-4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-elementtree-1.2.6-5.el4.centos.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/sqlite-3.3.6-2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-sqlite-1.1.7-1.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/elfutils-0.97.1-4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/rpm-python-4.3.3-22_nonptl.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-urlgrabber-2.9.8-2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/yum-2.4.3-3.el4.centos.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
yum -y update&amp;lt;br&amp;gt;&lt;br /&gt;
== CentOS 5 ==&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/gmp-4.1.4-10.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/readline-5.1-1.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-2.4.3-19.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/libxml2-2.6.26-2.1.2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/libxml2-python-2.6.26-2.1.2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/expat-1.95.8-8.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-elementtree-1.2.6-5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/sqlite-3.3.6-2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-sqlite-1.1.7-1.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/elfutils-0.125-3.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/rpm-python-4.4.2-37.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/m2crypto-0.16-6.el5.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-urlgrabber-3.1.0-2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/yum-3.0.5-1.el5.centos.2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
yum -y update&amp;lt;br&amp;gt;&lt;br /&gt;
[[Category:HOWTO]]&lt;/div&gt;</summary>
		<author><name>Eongaro</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Install_yum&amp;diff=3521</id>
		<title>Install yum</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Install_yum&amp;diff=3521"/>
		<updated>2007-10-10T18:26:47Z</updated>

		<summary type="html">&lt;p&gt;Eongaro: Added CentOS 5 section, clarify use&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This article is specific to CentOS, however the packages required for yum here are the same on other flavors''&lt;br /&gt;
&lt;br /&gt;
The below scripts installs all packages upon which yum depends.&lt;br /&gt;
&lt;br /&gt;
'''Please note''' - that the version numbers of the packages WILL change as later releases come out, it is up to you to ensure that the packages used are the latest.  If you find a package in this script has become deprecated, please update this page with the latest package so others do not have to search for it as well.&lt;br /&gt;
== CentOS 4 ==&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/gmp-4.1.4-3.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/readline-4.3-13.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-2.3.4-14.4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/libxml2-2.6.16-10.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/libxml2-python-2.6.16-10.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/expat-1.95.7-4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-elementtree-1.2.6-5.el4.centos.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/sqlite-3.3.6-2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-sqlite-1.1.7-1.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/elfutils-0.97.1-4.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/rpm-python-4.3.3-22_nonptl.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/python-urlgrabber-2.9.8-2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-4/4/os/i386/CentOS/RPMS/yum-2.4.3-3.el4.centos.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
yum -y update&amp;lt;br&amp;gt;&lt;br /&gt;
== CentOS 5 ==&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/gmp-4.1.4-10.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/readline-5.1-1.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-2.4.3-19.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/libxml2-2.6.26-2.1.2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/libxml2-python-2.6.26-2.1.2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/expat-1.95.8-8.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-elementtree-1.2.6-5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/sqlite-3.3.6-2.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-sqlite-1.1.7-1.2.1.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/elfutils-0.125-3.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/rpm-python-4.4.2-37.el5.i386.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/python-urlgrabber-3.1.0-2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
rpm -Uvh http://mirror.centos.org/centos-5/5.0/os/i386/CentOS/yum-3.0.5-1.el5.centos.2.noarch.rpm&amp;lt;br&amp;gt;&lt;br /&gt;
yum -y update&amp;lt;br&amp;gt;&lt;br /&gt;
[[Category:HOWTO]]&lt;/div&gt;</summary>
		<author><name>Eongaro</name></author>
		
	</entry>
</feed>