When you install a 32bit application on 64bit OS, you will get this kind of problem: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory solution is install 32bit library will solve that and you able to run 32bit apps on 64bit os like charm. Quick Fix: On Centos, Fedora: Read more »
faad2: config.status: error: cannot find input file: plugins/xmms/Makefile.in
You might facing this problem: config.status: error: cannot find input file: plugins/xmms/Makefile.in during compiling faad, well here is the solution to fix it: use your favourite editor tool to edit: configure.in i use nano because its easy to use. nano configure.in look for dnl AC_PROG_CXX erase the dnl so that Read more »
How to : Install Subversion
Here is 2 way to install subversion on your server. 1st method: yum install subversion or apt-get install subversion 2nd method: compiling from source wget http://subversion.tigris.org/downloads/subversion-1.6.12.tar.gz tar zxvf subversion-1.6.12.tar.gz cd subversion-1.6.12 ./configure –prefix=/usr/local/subversion/ –with-apxs=/usr/local/subversion/bin/apxs –with-ssl make && make install svn –help 3rd method: Using RPM for rhel server wget http://pkgs.repoforge.org/subversion/subversion-1.6.6-1.el5.rfx.x86_64.rpm Read more »
neroAacEnc: error while loading shared libraries: libstdc++.so.6
You might face this problem after installed neroAacEnc: neroAacEnc: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory here is the fix for centos or fedora user. yum whatprovides libstdc++.so.6 then it will show the result of: [root@web]# yum whatprovides libstdc++.so.6 Loaded plugins: Read more »
How do you extract MP3 from a video files using ffmpeg
There is alot of youtube to mp3 site out of internet to convert youtube video to MP3 files. You must be wonder how they do it, in this article i will show you how to get a video files converted using ffmpeg to mp3 format. ffmpeg -i youtubevideo.flv -f mp3 Read more »
(98)Address already in use: make_sock: could not bind to address
(98)Address already in use: make_sock: could not bind to address. You might facing this problem and could not start apache after stopped it. Check this out for solution 100% work.
/etc/skel directory
The system will copy the contents of the /etc/skel directory to the user’s HOME directory.
Umask command
The umask value is just that, a mask. It masks out the permissions you don’t want to give.
IonCube PHP Loader Error, IonCube not installed.
Often when surfing website, you found: Site error: the file /home/USER/public_html/index.php requires the ionCube PHP Loader ioncube_loader_lin_X.X.so to be installed. here is the way to resolve it: Create a ‘php.ini’ and add following: zend_extension = /home/USER/public_html/ioncube/ioncube_loader_lin_4.X.so Download ioncube_loader_lin_4.X.so from : http://www.ioncube.com/loaders.php and upload ioncube_loader_lin_4.X.so to /home/USER/public_html/ioncube/ Replace USER with the Read more »
Upgrade PHP 5.1 to PHP 5.2 on CentOS ( Jason Source )
Using yum upgrades to update your PHP 5.1.6 to PHP 5.2.11 on centos