Author | Roland McGrath |
Contributors | (all…) |
Released | 1987 |
Source | glibc.git |
Homepage | glibc.web |
The glibc package contains standard libraries which are used by multiple programs on the system. In order to save disk space and memory, as well as to make upgrading easier, common system code is kept in one place and shared between programs. This particular package contains the most important sets of shared libraries: the standard C library and the standard math library. Without these two libraries, a Linux system will not function.
glibc glibc-common glibc-benchtests glibc-devel glibc-utils glibc-static glibc-headers
memusage (1) - profile memory usage of a program memusagestat (1) - generate graphic from memory profiling data mtrace (3) - malloc tracing mtrace (1) - interpret the malloc trace log zic (8) - timezone compiler ldd (1) - print shared library dependencies pldd (1) - display dynamic shared objects linked into a process sprof (1) - read and display shared object profiling data encat (1p) - generate a formatted message catalog zdump (8) - timezone dumper iconv (3) - perform character set conversion iconv (1) - convert text from one character encoding to another iconv (3p) - codeset conversion function iconv (1p) - codeset conversion getent (1) - get entries from Name Service Switch libraries locale (3pm) - Perl pragma to use or avoid POSIX locales for built-in operations locale (7) - description of multilanguage support locale (1) - get locale-specific information locale (5) - describes a locale definition file locale (1p) - get locale-specific information getconf (1p) - get configuration values tzselect (8) - select a timezone localedef (1) - compile locale definition files localedef (1p) - define locale environment ldconfig (8) - configure dynamic linker run-time bindings sln (8) - create symbolic links iconvconfig (8) - create iconv module configuration cache
Find most used libraries on your system:
#!/usr/bin/env bash
find /usr/bin -type f -executable -exec sh -c "file -i '{}' \
| grep -q 'x-executable; charset=binary'" \; -print \