"Ing. Jose A. Amador" wrote:

> This seems a newbie question to me, but I also need to clarify this:
> 
> How can I use either libc5 or glibc under demand or at will ? What / where
> should I read ?

Application programs will use whichever libraries they were linked
against at compile time.

use the 'ldd' command to see.

terry@albert:~$ ldd /bin/bash
        libncurses.so.5 => /lib/libncurses.so.5 (0x4001c000)
        libdl.so.2 => /lib/libdl.so.2 (0x40069000)
        libc.so.6 => /lib/libc.so.6 (0x4006d000)
        ^^^^ linked against glibc (libc6)
        /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)

Terry

Reply via email to