http://www.howtoforge.com/virtualization-with-xen-on-centos-6.2-x86_64-paravirtualization-and-hardware-virtualization
http://www.techotopia.com/index.php/Using_Xen_Full_Virtualization_to_Run_Windows_on_CentOS
Thoughts of Digitalw00t
http://www.howtoforge.com/virtualization-with-xen-on-centos-6.2-x86_64-paravirtualization-and-hardware-virtualization
http://www.techotopia.com/index.php/Using_Xen_Full_Virtualization_to_Run_Windows_on_CentOS
Build goes here
Install python2.7 without breaking Centos internals. (link)
sudo yum update # update yum
sudo yum install centos-release-scl # install SCL
sudo yum install python27 # install Python 2.7
scl enable python27 bash
cd /opt/rh/python27/root/usr/bin/ # cd to the directory where SCL installs python
sudo LD_LIBRARY_PATH=$LD_LIBRARY_PATH ./easy_install-2.7 pip
sudo LD_LIBRARY_PATH=$LD_LIBRARY_PATH ./pip2.7 install requests
Note that using the SCL python2.7 is not as straight forward as it should be. (link)
If using “Let’s Encrypt” then you’ll need to update to python 2.7
http://linuxmoz.com/centos-kickstart-guide/
Reference pulled from Ben’s Journal.
The fix turned out to be as follows. I edited the file:
./contrib/libvorbis/module.defs
and changed:
LIBVORBIS.CONFIGURE.bootstrap = rm -fr aclocal.m4 autom4te.cache configure; autoreconf -I m4 -fiv;
to:
LIBVORBIS.CONFIGURE.bootstrap = rm -fr aclocal.m4 autom4te.cache configure; sh autogen.sh;
(and yes, that trailing ‘;’ is necessary)
We will be doing an install using PostGresql for the database.
rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
rpm -Uvh http://spacewalk.redhat.com/yum/1.7/RHEL/5/x86_64/spacewalk-repo-1.7-5.el5.noarch.rpm
yum install spacewalk-postgresql
References