glibc

Hi,
I found some statements about GNU C Library (aka glibc or libc6) Multiple Vulnerabilities on the internet. I just want to be sure glibc is not used in FreeBSD by default (might be a port). Is it true?
I found that FreeBSD has libc (/usr/src/lib/libc) but I think this is something different from glibc. Am I right?
And finally how could I find out which version of libc is installed on my machine?
Thanks!
 
FreeBSD has it's own libc implementation. And yes, it's different from glibc which is primarily a linux thing.
 
FreeBSD does not use glibc. As for the version - just use "uname -a"; the FreeBSD version displayed is a system version, not just a kernel version. It is possible to use older userland (including libc) with newer kernel, but it's not very common. If you really need that information, you might want to look at [cmd=]ident /lib/libc.so.7[/cmd] output (warning: it's 'ident', not 'indent').
 
Back
Top