Difference between revisions of "Talk:Installing Trixbox 2.0 in CentOS VE"

From OpenVZ Virtuozzo Containers Wiki
Jump to: navigation, search
(New page: In attempting to follow these instructions I've found the following: I am using the http://download.openvz.org/beta/templates/precreated/centos-5-x86.tar.gz template. Between the "Add ...)
 
Line 11: Line 11:
 
<pre>
 
<pre>
 
SITE="http://dag.wieers.com/packages/rpmforge-release/"
 
SITE="http://dag.wieers.com/packages/rpmforge-release/"
wget ${SITE}/rpmforge-release-0.3.6-1.el4.rf.i386.rpm
+
wget ${SITE}/rpmforge-release-0.3.6-1.el5.rf.i386.rpm
rpm -Uvh rpmforge-release-0.3.6-1.el4.rf.i386.rpm  
+
rpm -Uvh rpmforge-release-0.3.6-1.el5.rf.i386.rpm  
 
</pre>
 
</pre>
  
Apt has unresolved dependencies, so rpm wouldn't install.  I used:
+
Install apt:
 
<pre>
 
<pre>
 
SITE="http://dag.wieers.com/packages/apt/"
 
SITE="http://dag.wieers.com/packages/apt/"
wget ${SITE}/apt-0.5.15lorg3.2-1.el4.rf.i386.rpm  
+
wget ${SITE}/apt-0.5.15lorg3.2-1.el5.rf.i386.rpm  
yum localinstall apt-0.5.15lorg3.2-1.el4.rf.i386.rpm  
+
rpm -ivh apt-0.5.15lorg3.2-1.el5.rf.i386.rpm  
 
</pre>
 
</pre>
 +
Also note that I am using the el5 versions of these rpms.

Revision as of 13:26, 6 September 2008

In attempting to follow these instructions I've found the following:

I am using the http://download.openvz.org/beta/templates/precreated/centos-5-x86.tar.gz template.

Between the "Add character device" and the "Install rpmforge & apt" steps you'll probably want to do

vzctl enter <VEID>

I found that for some reason rpm could not access the files so I had to do the following to install rpmforge:

SITE="http://dag.wieers.com/packages/rpmforge-release/"
wget ${SITE}/rpmforge-release-0.3.6-1.el5.rf.i386.rpm
rpm -Uvh rpmforge-release-0.3.6-1.el5.rf.i386.rpm 

Install apt:

SITE="http://dag.wieers.com/packages/apt/"
wget ${SITE}/apt-0.5.15lorg3.2-1.el5.rf.i386.rpm 
rpm -ivh apt-0.5.15lorg3.2-1.el5.rf.i386.rpm 

Also note that I am using the el5 versions of these rpms.