Archive for the ‘Installation’ Category

Upgrading OpenSSH on CentOS 5

1) First, download the OpenSSH source tarball from the vendor and unpack it. You can find the tarballs at http://www.openssh.com/portable.html wget http://mirror.mcs.anl.gov/openssh/portable/openssh-5.8p1.tar.gz tar -xvzf openssh-5.8p1.tar.gz 2)Copy the spec file and tarball: cp ./openssh-5.8p1/contrib/redhat/openssh.spec /usr/src/redhat/SPECS/ cp openssh-5.8p1.tar.gz /usr/src/redhat/SOURCES/ 3)Do a little magic: cd /usr/src/redhat/SPECS perl -i.bak -pe ‘s/^(%define no_(gnome|x11)_askpass)\s+0$/$1 1/’ openssh.spec 4) build your RPM: rpmbuild […]

How to install RVSiteBuilder?

1)After got the license confirmation, SSH to your cPanel server as root and run command /scripts/makecpphp 2) Download the installer using the command below: cd /usr/local/cpanel/whostmgr/docroot/cgi/ rm -rf /usr/local/cpanel/whostmgr/docroot/cgi/rvsitebuilderinstaller/ rm -f rvsitebuilderinstaller.tar wget http://download.rvglobalsoft.com/rvsitebuilderinstaller.tar tar -xvf rvsitebuilderinstaller.tar chmod 755 addon_rvsitebuilder.cgi rm -f rvsitebuilderinstaller.tar 3)Open root WHM, at the bottom left menu under Plugins section, you […]

How to install ffmpeg, ffmpeg-PHP, Mplayer, Mencoder, flv2tool, LAME MP3 Encoder, and Libog from source

This article shows how to install ffmpeg, ffmpeg-PHP, Mplayer, Mencoder, flv2tool, LAME MP3 Encoder, and Libog from source. It should work on most systems, however may need some tweaking from system to sytem. cd /usr/local/src Download source tarballs: wget http://rubyforge.org/frs/download.php/9225/flvtool2_1.0.5_rc6.tgz wget http://easynews.dl.sourceforge.net/sourceforge/lame/lame-3.97.tar.gz wget http://superb-west.dl.sourceforge.net/sourceforge/ffmpeg-php/ffmpeg-php-0.5.0.tbz2 wget http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.1.2.tar.gz wget http://www4.mplayerhq.hu/MPlayer/releases/codecs/essential-20061022.tar.bz2 Extract the tarballs: tar zxvf […]

Python Installation

1) Download and extract Python: cd /usr/local/src wget http://apache.dataphone.se/httpd/modpython/mod_python-3.3.1.tgz tar zxvf mod_python-.3.3.1tgz 2) Configure & install Python cd mod_python-3.3.1 ./configure –with-apxs=/usr/local/apache/bin/apxs (check where your apxs is by typing: locate apxs) make make install 3) Configure Apache pico -w /usr/local/apache/conf/httpd.conf Locate your LoadModule – section by pressing CTRL-W and typing “LoadModule”. Add the following line under […]

Installation of php Memcache onto cPanel running CentOS

Make the Sources Folder mkdir ~/memcache Compile and Install LibEvent cd ~/memcache wget http://www.monkey.org/~provos/libevent-1.4.9-stable.tar.gz tar xvfz libevent-1.4.9-stable.tar.gz cd libevent-1.4.9-stable ./configure make make install Compile and Install Memcache cd ~/memcache wget http://www.danga.com/memcached/dist/memcached-1.2.6.tar.gz tar xvfz memcached-1.2.6.tar.gz cd memcached-1.2.6 ./configure –with-lib-event=/usr/local/ make make install Starting Memcache memcached If you get the following error then you may beed to […]

Installation of ionCube Loader

1. Download the program and store it on your server using wget or FTP. http://www.ioncube.com/loader_download.php 2. Unpack the program tar -zxvf ioncube_loaders.tar.gz 3. cd ioncube 4. copy ioncube-install-assistant.php to a web directory such as your hosting directory and open it in your browser window. cp ioncube-install-assistant.php /home/userdirectoryhere/www Then open it http://www.yourdomain.com/ioncube-install-assistant.php The output should be something similar to: Analysis of […]

How to install LAMP (Apache, MySQL and PHP in Linux) using Yum

There are many ways to install Lamp in Linux server but following is the easiest way to install using yum First Go in http://www.centos.org/ and download latest copy of centos Once you installed CentOS on server from shell type following commands yum install httpd Above command will install apache server then install php using following […]

how to install geoIP

You just need to fire following command on cpanel server to install geoIP. pecl install GeoIP While installation you may get the following error. checking for re2c version… invalid configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers. checking for gawk… gawk checking for geoip support… yes, shared […]

Install GIT on cPanel server.

We can install the GIT on the cPanel server by using the yum. Login in to the server as root user and run the following command. yum –disableexcludes=main install git -y  

How to install zend optimizer?

Install zend optimizer by using following steps. wget http://downloads.zend.com/optimizer/3.0.1/ZendOptimizer-3.0.1-linux-glibc21-i386.tar.gz   or wget http://66.45.230.130/sources/ZendOptimizer-3.0.1-linux-glibc21-i386.tar.gz cd ZendOptimizer-3.0.1 ./install.sh Follow the instructions on the screen you will receive after ./install.sh Restart the Apache service To check zend optimizer run php  -v