Tag: Installation

Installation

ffmpeg installation

I have use all the following steps and  I am able to install ffmpeg without any error. There are ready made scripts available to install ffmpeg. ========================================================================== cd /usr/local/src wget http://www.indianwebportal.com/installffmpeg.zip tar -xvf installffmpeg.zip cd installffmpeg ./install.sh ========================================================================== OR ==========================================================================...

Installation

PHP Installation

========================================== php INSTALLATION ( http://dan.drydog.com/apache2php.html ) ========================================== # wget http://in.php.net/get/php-5.2.6.tar.gz/from/in2.php.net/mirror #tar xvfz php-5.2.6.tar.gz # ./configure --with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/usr/include/mysql --prefix=/usr/local/apache/php --with-config-file-path=/usr/local/apache/php --enable-force-cgi-redirect --disable-cgi --with-zlib --with-gettext --with-gdbm # make # make install # cp -p .libs/libphp5.so /usr/local/apache/modules # cp -p php.ini-recommended /usr/local/apache/php/php.ini #...

Installation

MySql Installation

=========================== MySql INSTALLATION =========================== # wget http://httpupdate.cpanel.net/mysqlinstall/5.0.27-0/centos/5.0/MySQL-bench-5.0.27-0.glibc23.i386.rpm # wget http://httpupdate.cpanel.net/mysqlinstall/5.0.27-0/centos/5.0/MySQL-client-5.0.27-0.glibc23.i386.rpm # wget http://httpupdate.cpanel.net/mysqlinstall/5.0.27-0/centos/5.0/MySQL-devel-5.0.27-0.glibc23.i386.rpm # wget http://httpupdate.cpanel.net/mysqlinstall/5.0.27-0/centos/5.0/MySQL-server-5.0.27-0.glibc23.i386.rpm # wget http://httpupdate.cpanel.net/mysqlinstall/5.0.27-0/centos/5.0/MySQL-shared-5.0.27-0.glibc23.i386.rpm # wget http://mirror.centos.org/centos-5/5/os/i386/CentOS/perl-DBI-1.52-1.fc6.i386.rpm # rpm -ivh perl-DBI-1.52-1.fc6.i386.rpm # rpm -ivh MySQL-bench-5.0.27-0.glibc23.i386.rpm # rpm -ivh MySQL-client-5.0.27-0.glibc23.i386.rpm # rpm -ivh MySQL-devel-5.0.27-0.glibc23.i386.rpm # rpm...

Installation

Apache Installation

================================================= APACHE INSTALLATION ================================================= #cd /usr/local/src #wget wget http://mirrors.enquira.com/apache/httpd/httpd-2.2.9.tar.gz #tar xvfz httpd-2.2.8.tar.gz #cd httpd-2.2.8 # ./configure --prefix=/usr/local/apache2 # make # make install # cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd ./configure --with-layout=Apache --add-module=../mod_frontpage.c --enable-module=so --enable-module=ssl --enable-module=rewrite --enable-module=info --enable-module=expires --enable-module=headers --enable-module=proxy --enable-module=unique_id --enable-suexec --logfiledir=/usr/local/apache/logs --prefix=/usr/local/apache...