Lame Installation if anybody face this problem
==========================================================
error while loading shared libraries: libmp3lame.so.0:
cannot open shared object file: No such file or directory
==========================================================
Just fire this command [ ldconfig -v ] Full Description about idconfig
============================================================
ldconfig is used to generate a hints file that is used by ld.so to
locate and link to shared object libraries at run-time. When you
compile a program and link it with shared object libraries, the libraries are not
included in the executable program, just references to the global data and functions
as well as the name of the shared object file that contains them. When
you run the program, the ld.so file that is in your executable has a list of shared object
libraries that it was linked with. ld.so is responsible for finishing the link operation
by resolving these references at run-time to the shared object libraries.
If the shared object libraries are not already loaded into memory, they are loaded now.
If they are already in memory, they don't need loading. ld.so then resolves variable and
function references by updating the Global Offset Table for global variables
and the Procedure Linkage Table for functions. It gets the information for updating
these tables from the shared object libraries. It finds the shared object libraries by
looking in the hints file. The hints file is built by ldconfig.
============================================================
Enjoy
nav
|
My Blog Title
|