Booser Empowering your life

4Dec/110

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

Link To This Page
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox

Incoming search terms:

30Nov/110

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~

Link To This Page
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox

Incoming search terms:

29Nov/110

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.

Link To This Page
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox

Incoming search terms:

26Nov/110

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

Link To This Page
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox

Incoming search terms:

17Nov/110

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
Link To This Page
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox

Incoming search terms:

15Nov/111

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
Link To This Page
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox

Incoming search terms: