APC PHP Install Linux

Hi,   The following are the steps to install APC in your Linux server.   wget http://pecl.php.net/get/APC-3.1.9.tgz tar -xvf APC-3.1.9.tgz cd APC-3.1.9 phpize ./configure --enable-apc make make install Then add the line to php.ini file. extension=apc.so Now restart Apache your...

git tar gz download

Hi, Searching install git from git.tar.gz file.?.. You can do it by following steps.   wget http://www.codemonkey.org.uk/projects/git-snapshots/git/git-latest.tar.gz autoconf ./configure --with-curl=/usr/local make make install That’s it you have installed git in your system. Tahnk you for viewing helpinlinux.com

installatron install cpanel servers

Hi, Please follow the steps to install installatron in your cPanel servers. For Redhat servers. rpm -Uvh http://data1.installatron.com/installatron-plugin-cpanel-7.0.10-1.noarch.rpm For Non-Redhat distributions wget http://data1.installatron.com/installatron/installatron_setup.sh  chmod +x installatron_setup.sh ./installatron_setup.sh -f Reference : http://installatron.com/ Thank you for viewing helpinlinux.com

RVM ree install linux

Hi,   The following are the steps to install RVM(Ruby version manager) and ree in your Linux box.   The following commands will install both the softwares in it.   #cd /usr/local/src/ #wget https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer #chmod 755 rvm-installer #./rvm-installer The above...