Results 1 to 2 of 2

Thread: Finding the glibc version

  1. #1
    Join Date
    Feb 2008
    Location
    readlink("/proc/self/exe"
    Beans
    1,120
    Distro
    Ubuntu Development Release

    Arrow Finding the glibc version

    How to find out which version of glibc is running on your machine:

    Go to console and type:
    Code:
    /lib/libc.so.6
    You will get:
    all:~# /lib/libc.so.6
    GNU C Library (EGLIBC) stable release version 2.9, by Roland McGrath et al.
    Copyright (C) 2008 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.
    There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
    PARTICULAR PURPOSE.
    Compiled by GNU CC version 4.3.3.
    Compiled on a Linux >>2.6.26-2-amd64<< system on 2009-05-08.
    Available extensions:
    crypt add-on version 2.1 by Michael Glad and others
    GNU Libidn by Simon Josefsson
    Native POSIX Threads Library by Ulrich Drepper et al
    BIND-8.2.3-T5B
    For bug reporting instructions, please see:
    <http://www.eglibc.org/issues/>.
    all:~#
    Or you can do it via the package-managers:

    On Debian:
    Code:
    sudo aptitude show libc6
    or
    Code:
    sudo apt-cache show libc6

    And on RedHat/Fedora:
    Code:
    rpm -q glibc
    which should output something like
    Code:
    glibc-2.3.3-27.1
    In a world without walls and fences, who needs Windows and Gates?
    Linux is like a wigwam.... no Gates, no Windows but Apache inside!
    http://www.debianadmin.com
    apt-get install libstdc++6-4.3-doc

  2. #2
    Join Date
    Dec 2009
    Location
    Buenos Aires, Argentina
    Beans
    132
    Distro
    Ubuntu Budgie 18.04 Bionic Beaver

    Re: Finding the glibc version

    Thank you! Now I can search how to update glibc. =P
    Follow me on Twitter or LinkedIn.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •