Fix: perl(URI) >= 1.17 is needed by subversion
When you installing subversion on server you might found following problem:
error: Failed dependencies:
perl(URI) >= 1.17 is needed by subversion-1.6.6-1.el5.rfx.x86_64
Here is the solution to fix:
wget http://yum.trixbox.org/centos/5/RPMS/perl-URI-1.35-3.noarch.rpm rpm -i perl-URI-1.35-3.noarch.rpm
then proceed to subversion installation.
Cheers
2. Right-Click then Copy
3. Paste the HTML code into your webpage
Incoming search terms:
fix: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory
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:
yum install glibc.i686
On Ubuntu, Debian:
apt-get install ia32-libs
Hope that help.
~Cheers~
2. Right-Click then Copy
3. Paste the HTML code into your webpage
Incoming search terms:
- /lib/ld-linux so 2: bad ELF interpreter: No such file or directory (122)
- /lib/ld-linux so 2: bad elf interpreter (24)
- bad elf interpreter (20)
- lib ld-linux so 2 bad elf interpreter (13)
- /lib/ld-linux so 2: bad elf interpreter: (12)
- lib ld-linux so 2 bad elf interpreter no such file or directory (12)
- ld-linux so 2 bad elf interpreter (11)
- bad elf interpreter: no such file or directory (11)
- apt-get install ia32-libs (10)
- /lib/ld-linux so 2 bad elf interpreter no such file or directory (9)
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 it become:
AC_PROG_CXX
then save it and run:
autoreconf -vif ./configure make && make install
that will fix the problem. Hope that help, and dont forget to say thanks below.
2. Right-Click then Copy
3. Paste the HTML code into your webpage
Incoming search terms:
- config status error cannot find input file makefile in (12)
- ld linux so 2 bad elf interpreter (9)
- cannot find input file: plugins/xmms/makefile in (7)
- config status: error: cannot find input file: plugins/xmms/makefile in (7)
- config status: error: cannot find input file: makefile in (6)
- error: cannot find input file: plugins/xmms/makefile in (5)
- config status: error: cannot find input file: `Makefile in (5)
- config status: error: cannot find input file: `makefile in\ (4)
- faad status (2)
- cannot find input file: `Makefile in (2)
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: fastestmirror, priorities Loading mirror speeds from cached hostfile * base: mirror.ash.fastserv.com * extras: mirror.batblue.com * rpmforge: ftp-stud.fht-esslingen.de * updates: mirror.metrocast.net libstdc++-4.4.4-13.el6.i686 : GNU Standard C++ Library Repo : base Matched from: Other : libstdc++.so.6
just install it with :
yum install libstdc++-4.4.4-13.el6.i686
Note: This only work on centos, or fedora or any other mechine that has yum. For debian or ubuntu, you might need to find alternative solution. Or suggest at comment below if you know any solution.
Hope that help, and dont forget to say thanks on comment below, its free and motivate me to post more useful fix/solution for you.
Cheers
Boon
2. Right-Click then Copy
3. Paste the HTML code into your webpage
Incoming search terms:
- loading shared libraries libstdc so 6 (29)
- syslogd: error while loading shared libraries: libc so 6: cannot open shared object file: no such file or directory (10)
- neroaacenc: error while loading shared libraries: libstdc so 6: cannot open shared object file: no such file or directory (7)
- error while loading shared libraries: libstdc so 6 (6)
- error c1083: cannot open include file: \serialgate h\: no such file or directory (5)
- error while loading shared libraries libstdc so 6 (5)
- /home/darksnow/programs/blender26/blender: error while loading shared libraries: libtiff so 4: cannot open shared object file: no such file or directory (5)
- /iron: error while loading shared libraries: libpng12 so 0: cannot open shared object file: no such file or directory (5)
- Starting postgresql service: /usr/bin/pg_ctl: error while loading shared libraries: libpq-8 4eter so 5: cannot open shared object file: No such file or directory (4)
- error while loading shared libraries: libstdc so 6: cannot open shared object file: No such file or directory (4)
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 audiofile.mp3
-i (input video)
-f (output format)
if you like to adjust the sound quality:
ffmpeg -i youtubevideo.flv -ab 192k -ar 44100 -f mp3 audiofile.mp3
-ab (audio bitrate)
-ar (audio rate)
simple and easy, Hope that help.
2. Right-Click then Copy
3. Paste the HTML code into your webpage
Incoming search terms:
fix gpac problem: /usr/bin/ld: cannot find -lgpac_static

Some time you might facing some problem during installing ffmpeg:
gpac problem /usr/bin/ld: cannot find -lgpac_static
Here is the solution:
1st:
yum install mesa-libGL-devel yum install mesa-libGLU-devel yum install libXi-devel yum install libXmu-devel yum install freeglut-devel
then:
wget http://downloads.sourceforge.net/gpac/gpac-0.4.5.tar.gz wget http://downloads.sourceforge.net/gpac/gpac_extra_libs-0.4.5.tar.gz tar zxvf gpac-0.4.5.tar.gz tar zxvf gpac_extra_libs-0.4.5.tar.gz cd gpac cp -r ../gpac_extra_libs/* extra_lib/ chmod +x configure ./configure make lib make apps make install-lib make install cp bin/gcc/libgpac.so /usr/lib
2. Right-Click then Copy
3. Paste the HTML code into your webpage
Incoming search terms:
faad problem: ERROR: libfaad not found
When you compile ffmpeg sometime you might found:
./configure --prefix=/usr/local --enable-gpl --enable-shared --enable-mp3lame --enable-amr_nb --enable-amr_wb --enable-amr_if2 --enable-a52 --enable-a52bin --enable-faadbin --enable-dts --enable-pp --enable-faad --enable-pthreads --disable-ffserver --disable-ffplay ERROR: libfaad not found If you think configure made a mistake, make sure you are using the latest version from SVN. If the latest version fails, report the problem to the devel@mplayerhq.hu[/email] mailing list or IRC #ffmpeg on irc.freenode.net. Include the log file "config.err" produced by configure as this will help solving the problem.
Here is the solution:
tar zxvf faad2-2.5.tar.gz cd faad2 echo > plugins/Makefile.am echo > plugins/xmms/src/Makefile.am sed -i '/E_B/d' configure.in autoreconf -vif ./configure --prefix=/usr make make install
2. Right-Click then Copy
3. Paste the HTML code into your webpage
Incoming search terms:
How to install FFMPEG/MPlayer Automatically
Its been long time i did not update this blog, here i found some useful ffmpeg installer that will automatic install them for you by douwnloading and installing its dependecies files.
This script will install the following packages in your server:
ffmpeg
Mplayer
A52decoder
Amrnb and Amrwb
All codecs
facc and faad2
Ruby
flvtool2
ffmpeg-php
Mplayer and Mencoder
Lame
Libogg
Libvorbis
Libtheora
Libwmf
opencoreamr
vorbistools
X264
MP4Box
Xvidcore
Download URL is:
ffmpeginstaller Latest Stable Release : ffmpeginstaller.7.1.tar.gz
after download,
extract it by:
tar zxvf ffmpeginstaller.7.1.tar.gz
sh install.sh
Source from: http://www.ffmpeginstaller.com
then it will install everything for you. Cheers
2. Right-Click then Copy
3. Paste the HTML code into your webpage