glibc.xml 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-glibc" role="wrap">
  8. <?dbhtml filename="glibc.html"?>
  9. <sect1info condition="script">
  10. <productname>glibc</productname>
  11. <productnumber>&glibc-version;</productnumber>
  12. <address>&glibc-url;</address>
  13. </sect1info>
  14. <title>Glibc-&glibc-version;</title>
  15. <indexterm zone="ch-system-glibc">
  16. <primary sortas="a-Glibc">Glibc</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Glibc package contains the main C library. This library provides
  21. the basic routines for allocating memory, searching directories, opening and
  22. closing files, reading and writing files, string handling, pattern matching,
  23. arithmetic, and so on.</para>
  24. <segmentedlist>
  25. <segtitle>&buildtime;</segtitle>
  26. <segtitle>&diskspace;</segtitle>
  27. <seglistitem>
  28. <seg>&glibc-ch6-sbu;</seg>
  29. <seg>&glibc-ch6-du;</seg>
  30. </seglistitem>
  31. </segmentedlist>
  32. </sect2>
  33. <sect2 role="installation">
  34. <title>Installation of Glibc</title>
  35. <note><para>The Glibc build system is self-contained and will install
  36. perfectly, even though the compiler specs file and linker are still
  37. pointing to <filename class="directory">/tools</filename>. The specs
  38. and linker cannot be adjusted before the Glibc install because the
  39. Glibc autoconf tests would give false results and defeat the goal
  40. of achieving a clean build.</para></note>
  41. <para>Some of the Glibc programs use the non-FHS compilant
  42. <filename class="directory">/var/db</filename> directory to store
  43. their runtime data. Apply the following patch to make such programs
  44. store their runtime data in the FHS-compliant locations:</para>
  45. <screen><userinput remap="pre">patch -Np1 -i ../&glibc-fhs-patch;</userinput></screen>
  46. <!--
  47. <para>Fix a minor security issue with glob functions:</para>
  48. <screen><userinput remap="pre">patch -Np1 -i ../&glibc-glob-patch;</userinput></screen>
  49. --><!--
  50. <para>First create a compatibility symlink to avoid references to /tools in
  51. our final glibc:</para>
  52. <screen><userinput remap="pre">ln -sfv /tools/lib/gcc /usr/lib</userinput></screen>
  53. -->
  54. <para>Create a symlink for LSB
  55. compliance. Additionally, for x86_64, create a compatibility symlink
  56. required for the dynamic loader to function correctly:</para>
  57. <screen><userinput remap="pre">case $(uname -m) in
  58. i?86) ln -sfv ld-linux.so.2 /lib/ld-lsb.so.3
  59. ;;
  60. x86_64) ln -sfv ../lib/ld-linux-x86-64.so.2 /lib64
  61. ln -sfv ../lib/ld-linux-x86-64.so.2 /lib64/ld-lsb-x86-64.so.3
  62. ;;
  63. esac</userinput></screen>
  64. <!--
  65. <para>Remove a file that may be left over from a previous build attempt:
  66. </para>
  67. <screen><userinput remap="pre">rm -f /usr/include/limits.h</userinput></screen>
  68. -->
  69. <para>The Glibc documentation recommends building Glibc
  70. in a dedicated build directory:</para>
  71. <screen><userinput remap="pre">mkdir -v build
  72. cd build</userinput></screen>
  73. <para>Prepare Glibc for compilation:</para>
  74. <screen><userinput remap="configure">CC="gcc -ffile-prefix-map=/tools=/usr" \
  75. ../configure --prefix=/usr \
  76. --disable-werror \
  77. --enable-kernel=&min-kernel; \
  78. --enable-stack-protector=strong \
  79. --with-headers=/usr/include \
  80. libc_cv_slibdir=/lib</userinput></screen>
  81. <variablelist>
  82. <title>The meaning of the options and new configure parameters:</title>
  83. <varlistentry>
  84. <term><parameter>CC="gcc -ffile-prefix-map=/tools=/usr"</parameter></term>
  85. <listitem>
  86. <para>Make GCC record any references to files in /tools in result
  87. of the compilation as if the files resided in /usr. This avoids
  88. introduction of invalid paths in debugging symbols.</para>
  89. </listitem>
  90. </varlistentry>
  91. <varlistentry>
  92. <term><parameter>--disable-werror</parameter></term>
  93. <listitem>
  94. <para>This option disables the -Werror option passed to
  95. GCC. This is necessary for running the test suite.</para>
  96. </listitem>
  97. </varlistentry>
  98. <varlistentry>
  99. <term><parameter>--enable-stack-protector=strong</parameter></term>
  100. <listitem>
  101. <para>This option increases system security by adding
  102. extra code to check for buffer overflows, such as stack
  103. smashing attacks.</para>
  104. </listitem>
  105. </varlistentry>
  106. <varlistentry>
  107. <term><parameter>--with-headers=/usr/include</parameter></term>
  108. <listitem>
  109. <para>This option tells the build system where to find the
  110. kernel API headers. By default, those headers are sought in
  111. <filename class="directory">/tools/include</filename>.</para>
  112. </listitem>
  113. </varlistentry>
  114. <varlistentry>
  115. <term><parameter>libc_cv_slibdir=/lib</parameter></term>
  116. <listitem>
  117. <para>This variable sets the correct library for all
  118. systems. We do not want lib64 to be used.</para>
  119. </listitem>
  120. </varlistentry>
  121. </variablelist>
  122. <para>Compile the package:</para>
  123. <screen><userinput remap="make">make</userinput></screen>
  124. <important>
  125. <para>In this section, the test suite for Glibc is considered critical.
  126. Do not skip it under any circumstance.</para>
  127. </important>
  128. <para>Generally a few tests do not pass. The test failures listed below
  129. are usually safe to ignore.</para>
  130. <!-- Use remap="make" here to work around a jhalfs issue. -->
  131. <screen><userinput remap="make">case $(uname -m) in
  132. i?86) ln -sfnv $PWD/elf/ld-linux.so.2 /lib ;;
  133. x86_64) ln -sfnv $PWD/elf/ld-linux-x86-64.so.2 /lib ;;
  134. esac</userinput></screen>
  135. <note><para>The symbolic link above is needed to run the tests at this
  136. stage of building in the chroot envirnment. It will be overwritten
  137. in the install phase below.</para></note>
  138. <screen><userinput remap="test">make check</userinput></screen>
  139. <para>You may see some test failures. The Glibc test suite is
  140. somewhat dependent on the host system. This is a list of the most common
  141. issues seen for some versions of LFS:</para>
  142. <itemizedlist>
  143. <listitem>
  144. <para><emphasis>misc/check-installed-headers-c</emphasis>
  145. is known to fail due to changes in the kernel headers.</para>
  146. </listitem>
  147. <listitem>
  148. <para><emphasis>misc/tst-ttyname</emphasis>
  149. is known to fail in the LFS chroot environment.</para>
  150. </listitem>
  151. <listitem>
  152. <para><emphasis>inet/tst-idna_name_classify</emphasis>
  153. is known to fail in the LFS chroot environment.</para>
  154. </listitem>
  155. <listitem>
  156. <para><emphasis>posix/tst-getaddrinfo4</emphasis> and
  157. <emphasis>posix/tst-getaddrinfo5</emphasis>
  158. may fail on some architectures.</para>
  159. </listitem>
  160. <listitem>
  161. <para>The <emphasis>nss/tst-nss-files-hosts-multi</emphasis>
  162. test may fail for reasons that have not been determined.</para>
  163. </listitem>
  164. <listitem>
  165. <para>The <emphasis>rt/tst-cputimer{1,2,3}</emphasis> tests depend on
  166. the host system kernel. Kernels 4.14.91&ndash;4.14.96,
  167. 4.19.13&ndash;4.19.18, and 4.20.0&ndash;4.20.5 are known to
  168. cause these tests to fail.
  169. </para>
  170. </listitem>
  171. <listitem>
  172. <para>The math tests sometimes fail when running on
  173. systems where the CPU is not a relatively new Intel or
  174. AMD processor.</para>
  175. </listitem>
  176. <!--
  177. <listitem>
  178. <para>The
  179. <emphasis>nptl/tst-thread-affinity-{pthread,pthread2,sched}</emphasis>
  180. tests may fail for reasons that have not been determined. </para>
  181. </listitem>
  182. <listitem>
  183. <para>Other tests known to fail on some architectures are
  184. malloc/tst-malloc-usable and nptl/tst-cleanupx4. </para>
  185. </listitem>
  186. -->
  187. </itemizedlist>
  188. <para>Though it is a harmless message, the install stage of Glibc will
  189. complain about the absence of <filename>/etc/ld.so.conf</filename>.
  190. Prevent this warning with:</para>
  191. <screen><userinput remap="install">touch /etc/ld.so.conf</userinput></screen>
  192. <para>Fix the generated Makefile to skip an unneeded sanity check
  193. that fails in the LFS partial environment:
  194. </para>
  195. <screen><userinput remap="install">sed '/test-installation/s@$(PERL)@echo not running@' -i ../Makefile</userinput></screen>
  196. <para>Install the package:</para>
  197. <screen><userinput remap="install">make install</userinput></screen>
  198. <para>Install the configuration file and runtime directory for
  199. <command>nscd</command>:</para>
  200. <screen><userinput remap="install">cp -v ../nscd/nscd.conf /etc/nscd.conf
  201. mkdir -pv /var/cache/nscd</userinput></screen>
  202. <para revision="systemd">Install the systemd support files for
  203. <command>nscd</command>:</para>
  204. <screen revision="systemd"><userinput remap="install">install -v -Dm644 ../nscd/nscd.tmpfiles /usr/lib/tmpfiles.d/nscd.conf
  205. install -v -Dm644 ../nscd/nscd.service /lib/systemd/system/nscd.service</userinput></screen>
  206. <para>Next, install the locales that can make the system respond in a
  207. different language. None of the locales are required, but if some of them
  208. are missing, the test suites of future packages would skip important
  209. testcases.</para>
  210. <para>Individual locales can be installed using the
  211. <command>localedef</command> program. E.g., the first
  212. <command>localedef</command> command below combines the
  213. <filename>/usr/share/i18n/locales/cs_CZ</filename>
  214. charset-independent locale definition with the
  215. <filename>/usr/share/i18n/charmaps/UTF-8.gz</filename>
  216. charmap definition and appends the result to the
  217. <filename>/usr/lib/locale/locale-archive</filename> file.
  218. The following instructions will install the minimum set of
  219. locales necessary for the optimal coverage of tests:</para>
  220. <screen role="nodump"><userinput remap="locale-test">mkdir -pv /usr/lib/locale
  221. localedef -i POSIX -f UTF-8 C.UTF-8 2> /dev/null || true
  222. localedef -i cs_CZ -f UTF-8 cs_CZ.UTF-8
  223. localedef -i de_DE -f ISO-8859-1 de_DE
  224. localedef -i de_DE@euro -f ISO-8859-15 de_DE@euro
  225. localedef -i de_DE -f UTF-8 de_DE.UTF-8
  226. localedef -i el_GR -f ISO-8859-7 el_GR
  227. localedef -i en_GB -f UTF-8 en_GB.UTF-8
  228. localedef -i en_HK -f ISO-8859-1 en_HK
  229. localedef -i en_PH -f ISO-8859-1 en_PH
  230. localedef -i en_US -f ISO-8859-1 en_US
  231. localedef -i en_US -f UTF-8 en_US.UTF-8
  232. localedef -i es_MX -f ISO-8859-1 es_MX
  233. localedef -i fa_IR -f UTF-8 fa_IR
  234. localedef -i fr_FR -f ISO-8859-1 fr_FR
  235. localedef -i fr_FR@euro -f ISO-8859-15 fr_FR@euro
  236. localedef -i fr_FR -f UTF-8 fr_FR.UTF-8
  237. localedef -i it_IT -f ISO-8859-1 it_IT
  238. localedef -i it_IT -f UTF-8 it_IT.UTF-8
  239. localedef -i ja_JP -f EUC-JP ja_JP
  240. localedef -i ja_JP -f SHIFT_JIS ja_JP.SIJS 2> /dev/null || true
  241. localedef -i ja_JP -f UTF-8 ja_JP.UTF-8
  242. localedef -i ru_RU -f KOI8-R ru_RU.KOI8-R
  243. localedef -i ru_RU -f UTF-8 ru_RU.UTF-8
  244. localedef -i tr_TR -f UTF-8 tr_TR.UTF-8
  245. localedef -i zh_CN -f GB18030 zh_CN.GB18030
  246. localedef -i zh_HK -f BIG5-HKSCS zh_HK.BIG5-HKSCS</userinput></screen>
  247. <para>In addition, install the locale for your own country, language and
  248. character set.</para>
  249. <para>Alternatively, install all locales listed in the
  250. <filename>glibc-&glibc-version;/localedata/SUPPORTED</filename> file
  251. (it includes every locale listed above and many more) at once with the
  252. following time-consuming command:</para>
  253. <screen><userinput remap="locale-full">make localedata/install-locales</userinput></screen>
  254. <para>Then use the <command>localedef</command> command to create and
  255. install locales not listed in the
  256. <filename>glibc-&glibc-version;/localedata/SUPPORTED</filename> file
  257. in the unlikely case you need them.</para>
  258. <note><para>Glibc now uses libidn2 when resolving internationalized
  259. domain names. This is a run time dependency. If this capability
  260. is needed, the instructions for installing libidn2 are in the
  261. <ulink url="&blfs-book;general/libidn2.html">BLFS libidn2 page</ulink>.
  262. </para></note>
  263. </sect2>
  264. <sect2 id="conf-glibc" role="configuration">
  265. <title>Configuring Glibc</title>
  266. <indexterm zone="conf-glibc">
  267. <primary sortas="e-/etc/nsswitch.conf">/etc/nsswitch.conf</primary>
  268. </indexterm>
  269. <indexterm zone="conf-glibc">
  270. <primary sortas="e-/etc/localtime">/etc/localtime</primary>
  271. </indexterm>
  272. <sect3>
  273. <title>Adding nsswitch.conf</title>
  274. <para>The <filename>/etc/nsswitch.conf</filename> file needs to be created
  275. because the Glibc defaults do not work well in a networked environment.
  276. </para>
  277. <para>Create a new file <filename>/etc/nsswitch.conf</filename> by running the
  278. following:</para>
  279. <screen><userinput>cat &gt; /etc/nsswitch.conf &lt;&lt; "EOF"
  280. <literal># Begin /etc/nsswitch.conf
  281. passwd: files
  282. group: files
  283. shadow: files
  284. hosts: files dns
  285. networks: files
  286. protocols: files
  287. services: files
  288. ethers: files
  289. rpc: files
  290. # End /etc/nsswitch.conf</literal>
  291. EOF</userinput></screen>
  292. </sect3>
  293. <sect3>
  294. <title>Adding time zone data</title>
  295. <para>Install and set up the time zone data with the following:</para>
  296. <screen><userinput>tar -xf ../../tzdata&tzdata-version;.tar.gz
  297. ZONEINFO=/usr/share/zoneinfo
  298. mkdir -pv $ZONEINFO/{posix,right}
  299. for tz in etcetera southamerica northamerica europe africa antarctica \
  300. asia australasia backward pacificnew systemv; do
  301. zic -L /dev/null -d $ZONEINFO ${tz}
  302. zic -L /dev/null -d $ZONEINFO/posix ${tz}
  303. zic -L leapseconds -d $ZONEINFO/right ${tz}
  304. done
  305. cp -v zone.tab zone1970.tab iso3166.tab $ZONEINFO
  306. zic -d $ZONEINFO -p America/New_York
  307. unset ZONEINFO</userinput></screen>
  308. <variablelist>
  309. <title>The meaning of the zic commands:</title>
  310. <varlistentry>
  311. <term><parameter>zic -L /dev/null ...</parameter></term>
  312. <listitem>
  313. <para>This creates posix time zones, without any leap seconds. It is
  314. conventional to put these in both
  315. <filename class="directory">zoneinfo</filename> and
  316. <filename class="directory">zoneinfo/posix</filename>. It is
  317. necessary to put the POSIX time zones in
  318. <filename class="directory">zoneinfo</filename>, otherwise various
  319. test-suites will report errors. On an embedded system, where space is
  320. tight and you do not intend to ever update the time zones, you could save
  321. 1.9MB by not using the <filename class="directory">posix</filename>
  322. directory, but some applications or test-suites might produce some
  323. failures.</para>
  324. </listitem>
  325. </varlistentry>
  326. <varlistentry>
  327. <term><parameter>zic -L leapseconds ...</parameter></term>
  328. <listitem>
  329. <para>This creates right time zones, including leap seconds. On an
  330. embedded system, where space is tight and you do not intend to
  331. ever update the time zones, or care about the correct time, you could
  332. save 1.9MB by omitting the <filename class="directory">right</filename>
  333. directory.</para>
  334. </listitem>
  335. </varlistentry>
  336. <varlistentry>
  337. <term><parameter>zic ... -p ...</parameter></term>
  338. <listitem>
  339. <para>This creates the <filename>posixrules</filename> file. We use
  340. New York because POSIX requires the daylight savings time rules
  341. to be in accordance with US rules.</para>
  342. </listitem>
  343. </varlistentry>
  344. </variablelist>
  345. <para>One way to determine the local time zone is to run the following
  346. script:</para>
  347. <screen role="nodump"><userinput>tzselect</userinput></screen>
  348. <para>After answering a few questions about the location, the script will
  349. output the name of the time zone (e.g.,
  350. <emphasis>America/Edmonton</emphasis>). There are also some other possible
  351. time zones listed in <filename
  352. class='directory'>/usr/share/zoneinfo</filename> such as
  353. <emphasis>Canada/Eastern</emphasis> or <emphasis>EST5EDT</emphasis> that
  354. are not identified by the script but can be used.</para>
  355. <para>Then create the <filename>/etc/localtime</filename> file by
  356. running:</para>
  357. <screen revision="sysv"><userinput>cp -v /usr/share/zoneinfo/<replaceable>&lt;xxx&gt;</replaceable> /etc/localtime</userinput></screen>
  358. <screen revision="systemd"><userinput>ln -sfv /usr/share/zoneinfo/<replaceable>&lt;xxx&gt;</replaceable> /etc/localtime</userinput></screen>
  359. <para>Replace <replaceable>&lt;xxx&gt;</replaceable> with the name of the
  360. time zone selected (e.g., Canada/Eastern).</para>
  361. </sect3>
  362. <sect3 id="conf-ld" role="configuration">
  363. <title>Configuring the Dynamic Loader</title>
  364. <indexterm zone="conf-ld">
  365. <primary sortas="e-/etc/ld.so.conf">/etc/ld.so.conf</primary>
  366. </indexterm>
  367. <para>By default, the dynamic loader (<filename
  368. class="libraryfile">/lib/ld-linux.so.2</filename>) searches through
  369. <filename class="directory">/lib</filename> and <filename
  370. class="directory">/usr/lib</filename> for dynamic libraries that are
  371. needed by programs as they are run. However, if there are libraries in
  372. directories other than <filename class="directory">/lib</filename> and
  373. <filename class="directory">/usr/lib</filename>, these need to be added
  374. to the <filename>/etc/ld.so.conf</filename> file in order for the
  375. dynamic loader to find them. Two directories that are commonly known
  376. to contain additional libraries are <filename
  377. class="directory">/usr/local/lib</filename> and <filename
  378. class="directory">/opt/lib</filename>, so add those directories to the
  379. dynamic loader's search path.</para>
  380. <para>Create a new file <filename>/etc/ld.so.conf</filename> by running the
  381. following:</para>
  382. <screen><userinput>cat &gt; /etc/ld.so.conf &lt;&lt; "EOF"
  383. <literal># Begin /etc/ld.so.conf
  384. /usr/local/lib
  385. /opt/lib
  386. </literal>
  387. EOF</userinput></screen>
  388. <para>If desired, the dynamic loader can also search a directory and
  389. include the contents of files found there. Generally the files in
  390. this include directory are one line specifying the desired library path.
  391. To add this capability run the following commands:</para>
  392. <screen role="nodump"><userinput>cat &gt;&gt; /etc/ld.so.conf &lt;&lt; "EOF"
  393. <literal># Add an include directory
  394. include /etc/ld.so.conf.d/*.conf
  395. </literal>
  396. EOF
  397. mkdir -pv /etc/ld.so.conf.d</userinput></screen>
  398. </sect3>
  399. </sect2>
  400. <sect2 id="contents-glibc" role="content">
  401. <title>Contents of Glibc</title>
  402. <segmentedlist>
  403. <segtitle>Installed programs</segtitle>
  404. <segtitle>Installed libraries</segtitle>
  405. <segtitle>Installed directories</segtitle>
  406. <seglistitem>
  407. <seg>catchsegv, gencat, getconf, getent, iconv, iconvconfig, ldconfig,
  408. ldd, lddlibc4, locale, localedef, makedb, mtrace, nscd,
  409. pcprofiledump, pldd, sln, sotruss, sprof, tzselect, xtrace,
  410. zdump, and zic</seg>
  411. <seg>ld-&glibc-version;.so, libBrokenLocale.{a,so}, libSegFault.so, libanl.{a,so},
  412. libc.{a,so}, libc_nonshared.a,
  413. libcrypt.{a,so}, libdl.{a,so}, libg.a, libm.{a,so},
  414. libmcheck.a, libmemusage.so, libmvec.{a,so}, libnsl.{a,so},
  415. libnss_compat.so, libnss_dns.so, libnss_files.so, libnss_hesiod.so,
  416. libpcprofile.so, libpthread.{a,so},
  417. libpthread_nonshared.a, libresolv.{a,so}, librt.{a,so},
  418. libthread_db.so, and libutil.{a,so}</seg>
  419. <seg>/usr/include/arpa, /usr/include/bits, /usr/include/gnu,
  420. /usr/include/net, /usr/include/netash, /usr/include/netatalk,
  421. /usr/include/netax25, /usr/include/neteconet, /usr/include/netinet,
  422. /usr/include/netipx, /usr/include/netiucv, /usr/include/netpacket,
  423. /usr/include/netrom, /usr/include/netrose, /usr/include/nfs,
  424. /usr/include/protocols, /usr/include/rpc,
  425. /usr/include/sys, /usr/lib/audit, /usr/lib/gconv, /usr/lib/locale,
  426. /usr/libexec/getconf, /usr/share/i18n, /usr/share/zoneinfo,
  427. /var/cache/nscd, and /var/lib/nss_db</seg>
  428. </seglistitem>
  429. </segmentedlist>
  430. <variablelist>
  431. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  432. <?dbfo list-presentation="list"?>
  433. <?dbhtml list-presentation="table"?>
  434. <varlistentry id="catchsegv">
  435. <term><command>catchsegv</command></term>
  436. <listitem>
  437. <para>Can be used to create a stack trace when a program
  438. terminates with a segmentation fault</para>
  439. <indexterm zone="ch-system-glibc catchsegv">
  440. <primary sortas="b-catchsegv">catchsegv</primary>
  441. </indexterm>
  442. </listitem>
  443. </varlistentry>
  444. <varlistentry id="gencat">
  445. <term><command>gencat</command></term>
  446. <listitem>
  447. <para>Generates message catalogues</para>
  448. <indexterm zone="ch-system-glibc gencat">
  449. <primary sortas="b-gencat">gencat</primary>
  450. </indexterm>
  451. </listitem>
  452. </varlistentry>
  453. <varlistentry id="getconf">
  454. <term><command>getconf</command></term>
  455. <listitem>
  456. <para>Displays the system configuration values for file system
  457. specific variables</para>
  458. <indexterm zone="ch-system-glibc getconf">
  459. <primary sortas="b-getconf">getconf</primary>
  460. </indexterm>
  461. </listitem>
  462. </varlistentry>
  463. <varlistentry id="getent">
  464. <term><command>getent</command></term>
  465. <listitem>
  466. <para>Gets entries from an administrative database</para>
  467. <indexterm zone="ch-system-glibc getent">
  468. <primary sortas="b-getent">getent</primary>
  469. </indexterm>
  470. </listitem>
  471. </varlistentry>
  472. <varlistentry id="iconv">
  473. <term><command>iconv</command></term>
  474. <listitem>
  475. <para>Performs character set conversion</para>
  476. <indexterm zone="ch-system-glibc iconv">
  477. <primary sortas="b-iconv">iconv</primary>
  478. </indexterm>
  479. </listitem>
  480. </varlistentry>
  481. <varlistentry id="iconvconfig">
  482. <term><command>iconvconfig</command></term>
  483. <listitem>
  484. <para>Creates fastloading <command>iconv</command> module configuration
  485. files</para>
  486. <indexterm zone="ch-system-glibc iconvconfig">
  487. <primary sortas="b-iconvconfig">iconvconfig</primary>
  488. </indexterm>
  489. </listitem>
  490. </varlistentry>
  491. <varlistentry id="ldconfig">
  492. <term><command>ldconfig</command></term>
  493. <listitem>
  494. <para>Configures the dynamic linker runtime bindings</para>
  495. <indexterm zone="ch-system-glibc ldconfig">
  496. <primary sortas="b-ldconfig">ldconfig</primary>
  497. </indexterm>
  498. </listitem>
  499. </varlistentry>
  500. <varlistentry id="ldd">
  501. <term><command>ldd</command></term>
  502. <listitem>
  503. <para>Reports which shared libraries are required
  504. by each given program or shared library</para>
  505. <indexterm zone="ch-system-glibc ldd">
  506. <primary sortas="b-ldd">ldd</primary>
  507. </indexterm>
  508. </listitem>
  509. </varlistentry>
  510. <varlistentry id="lddlibc4">
  511. <term><command>lddlibc4</command></term>
  512. <listitem>
  513. <para>Assists <command>ldd</command> with object files</para>
  514. <indexterm zone="ch-system-glibc lddlibc4">
  515. <primary sortas="b-lddlibc4">lddlibc4</primary>
  516. </indexterm>
  517. </listitem>
  518. </varlistentry>
  519. <varlistentry id="locale">
  520. <term><command>locale</command></term>
  521. <listitem>
  522. <para>Prints various information about the current locale</para>
  523. <indexterm zone="ch-system-glibc locale">
  524. <primary sortas="b-locale">locale</primary>
  525. </indexterm>
  526. </listitem>
  527. </varlistentry>
  528. <varlistentry id="localedef">
  529. <term><command>localedef</command></term>
  530. <listitem>
  531. <para>Compiles locale specifications</para>
  532. <indexterm zone="ch-system-glibc localedef">
  533. <primary sortas="b-localedef">localedef</primary>
  534. </indexterm>
  535. </listitem>
  536. </varlistentry>
  537. <varlistentry id="makedb">
  538. <term><command>makedb</command></term>
  539. <listitem>
  540. <para>Creates a simple database from textual input</para>
  541. <indexterm zone="ch-system-glibc makedb">
  542. <primary sortas="b-makedb">makedb</primary>
  543. </indexterm>
  544. </listitem>
  545. </varlistentry>
  546. <varlistentry id="mtrace">
  547. <term><command>mtrace</command></term>
  548. <listitem>
  549. <para>Reads and interprets a memory trace file and displays a summary
  550. in human-readable format</para>
  551. <indexterm zone="ch-system-glibc mtrace">
  552. <primary sortas="b-mtrace">mtrace</primary>
  553. </indexterm>
  554. </listitem>
  555. </varlistentry>
  556. <varlistentry id="nscd">
  557. <term><command>nscd</command></term>
  558. <listitem>
  559. <para>A daemon that provides a cache for the most common name
  560. service requests</para>
  561. <indexterm zone="ch-system-glibc nscd">
  562. <primary sortas="b-nscd">nscd</primary>
  563. </indexterm>
  564. </listitem>
  565. </varlistentry>
  566. <varlistentry id="pcprofiledump">
  567. <term><command>pcprofiledump</command></term>
  568. <listitem>
  569. <para>Dump information generated by PC profiling</para>
  570. <indexterm zone="ch-system-glibc pcprofiledump">
  571. <primary sortas="b-pcprofiledump">pcprofiledump</primary>
  572. </indexterm>
  573. </listitem>
  574. </varlistentry>
  575. <varlistentry id="pldd">
  576. <term><command>pldd</command></term>
  577. <listitem>
  578. <para>Lists dynamic shared objects used by running processes</para>
  579. <indexterm zone="ch-system-glibc pldd">
  580. <primary sortas="b-pldd">pldd</primary>
  581. </indexterm>
  582. </listitem>
  583. </varlistentry>
  584. <varlistentry id="sln">
  585. <term><command>sln</command></term>
  586. <listitem>
  587. <para>A statically linked <command>ln</command> program</para>
  588. <indexterm zone="ch-system-glibc sln">
  589. <primary sortas="b-sln">sln</primary>
  590. </indexterm>
  591. </listitem>
  592. </varlistentry>
  593. <varlistentry id="sotruss">
  594. <term><command>sotruss</command></term>
  595. <listitem>
  596. <para>Traces shared library procedure calls of a specified command</para>
  597. <indexterm zone="ch-system-glibc sotruss">
  598. <primary sortas="b-sotruss">sotruss</primary>
  599. </indexterm>
  600. </listitem>
  601. </varlistentry>
  602. <varlistentry id="sprof">
  603. <term><command>sprof</command></term>
  604. <listitem>
  605. <para>Reads and displays shared object profiling data</para>
  606. <indexterm zone="ch-system-glibc sprof">
  607. <primary sortas="b-sprof">sprof</primary>
  608. </indexterm>
  609. </listitem>
  610. </varlistentry>
  611. <varlistentry id="tzselect">
  612. <term><command>tzselect</command></term>
  613. <listitem>
  614. <para>Asks the user about the location of the system and reports
  615. the corresponding time zone description</para>
  616. <indexterm zone="ch-system-glibc tzselect">
  617. <primary sortas="b-tzselect">tzselect</primary>
  618. </indexterm>
  619. </listitem>
  620. </varlistentry>
  621. <varlistentry id="xtrace">
  622. <term><command>xtrace</command></term>
  623. <listitem>
  624. <para>Traces the execution of a program by printing the currently
  625. executed function</para>
  626. <indexterm zone="ch-system-glibc xtrace">
  627. <primary sortas="b-xtrace">xtrace</primary>
  628. </indexterm>
  629. </listitem>
  630. </varlistentry>
  631. <varlistentry id="zdump">
  632. <term><command>zdump</command></term>
  633. <listitem>
  634. <para>The time zone dumper</para>
  635. <indexterm zone="ch-system-glibc zdump">
  636. <primary sortas="b-zdump">zdump</primary>
  637. </indexterm>
  638. </listitem>
  639. </varlistentry>
  640. <varlistentry id="zic">
  641. <term><command>zic</command></term>
  642. <listitem>
  643. <para>The time zone compiler</para>
  644. <indexterm zone="ch-system-glibc zic">
  645. <primary sortas="b-zic">zic</primary>
  646. </indexterm>
  647. </listitem>
  648. </varlistentry>
  649. <varlistentry id="ld.so">
  650. <term><filename class="libraryfile">ld-&glibc-version;.so</filename></term>
  651. <listitem>
  652. <para>The helper program for shared library executables</para>
  653. <indexterm zone="ch-system-glibc ld.so">
  654. <primary sortas="c-ld.so">ld-&glibc-version;.so</primary>
  655. </indexterm>
  656. </listitem>
  657. </varlistentry>
  658. <varlistentry id="libBrokenLocale">
  659. <term><filename class="libraryfile">libBrokenLocale</filename></term>
  660. <listitem>
  661. <para>Used internally by Glibc as a gross hack to get broken programs
  662. (e.g., some Motif applications) running. See comments in
  663. <filename>glibc-&glibc-version;/locale/broken_cur_max.c</filename>
  664. for more information</para>
  665. <indexterm zone="ch-system-glibc libBrokenLocale">
  666. <primary sortas="c-libBrokenLocale">libBrokenLocale</primary>
  667. </indexterm>
  668. </listitem>
  669. </varlistentry>
  670. <varlistentry id="libSegFault">
  671. <term><filename class="libraryfile">libSegFault</filename></term>
  672. <listitem>
  673. <para>The segmentation fault signal handler, used by
  674. <command>catchsegv</command></para>
  675. <indexterm zone="ch-system-glibc libSegFault">
  676. <primary sortas="c-libSegFault">libSegFault</primary>
  677. </indexterm>
  678. </listitem>
  679. </varlistentry>
  680. <varlistentry id="libanl">
  681. <term><filename class="libraryfile">libanl</filename></term>
  682. <listitem>
  683. <para>An asynchronous name lookup library</para>
  684. <indexterm zone="ch-system-glibc libanl">
  685. <primary sortas="c-libanl">libanl</primary>
  686. </indexterm>
  687. </listitem>
  688. </varlistentry>
  689. <varlistentry id="libc">
  690. <term><filename class="libraryfile">libc</filename></term>
  691. <listitem>
  692. <para>The main C library</para>
  693. <indexterm zone="ch-system-glibc libc">
  694. <primary sortas="c-libc">libc</primary>
  695. </indexterm>
  696. </listitem>
  697. </varlistentry>
  698. <varlistentry id="libcrypt">
  699. <term><filename class="libraryfile">libcrypt</filename></term>
  700. <listitem>
  701. <para>The cryptography library</para>
  702. <indexterm zone="ch-system-glibc libcrypt">
  703. <primary sortas="c-libcrypt">libcrypt</primary>
  704. </indexterm>
  705. </listitem>
  706. </varlistentry>
  707. <varlistentry id="libdl">
  708. <term><filename class="libraryfile">libdl</filename></term>
  709. <listitem>
  710. <para>The dynamic linking interface library</para>
  711. <indexterm zone="ch-system-glibc libdl">
  712. <primary sortas="c-libdl">libdl</primary>
  713. </indexterm>
  714. </listitem>
  715. </varlistentry>
  716. <varlistentry id="libg">
  717. <term><filename class="libraryfile">libg</filename></term>
  718. <listitem>
  719. <para>Dummy library containing no functions. Previously was a runtime
  720. library for <command>g++</command></para>
  721. <indexterm zone="ch-system-glibc libg">
  722. <primary sortas="c-libg">libg</primary>
  723. </indexterm>
  724. </listitem>
  725. </varlistentry>
  726. <varlistentry id="libm">
  727. <term><filename class="libraryfile">libm</filename></term>
  728. <listitem>
  729. <para>The mathematical library</para>
  730. <indexterm zone="ch-system-glibc libm">
  731. <primary sortas="c-libm">libm</primary>
  732. </indexterm>
  733. </listitem>
  734. </varlistentry>
  735. <varlistentry id="libmcheck">
  736. <term><filename class="libraryfile">libmcheck</filename></term>
  737. <listitem>
  738. <para>Turns on memory allocation checking when linked to</para>
  739. <indexterm zone="ch-system-glibc libmcheck">
  740. <primary sortas="c-libmcheck">libmcheck</primary>
  741. </indexterm>
  742. </listitem>
  743. </varlistentry>
  744. <varlistentry id="libmemusage">
  745. <term><filename class="libraryfile">libmemusage</filename></term>
  746. <listitem>
  747. <para>Used by <command>memusage</command> to help collect
  748. information about the memory usage of a program</para>
  749. <indexterm zone="ch-system-glibc libmemusage">
  750. <primary sortas="c-libmemusage">libmemusage</primary>
  751. </indexterm>
  752. </listitem>
  753. </varlistentry>
  754. <varlistentry id="libnsl">
  755. <term><filename class="libraryfile">libnsl</filename></term>
  756. <listitem>
  757. <para>The network services library</para>
  758. <indexterm zone="ch-system-glibc libnsl">
  759. <primary sortas="c-libnsl">libnsl</primary>
  760. </indexterm>
  761. </listitem>
  762. </varlistentry>
  763. <varlistentry id="libnss">
  764. <term><filename class="libraryfile">libnss</filename></term>
  765. <listitem>
  766. <para>The Name Service Switch libraries, containing functions for
  767. resolving host names, user names, group names, aliases, services,
  768. protocols, etc.</para>
  769. <indexterm zone="ch-system-glibc libnss">
  770. <primary sortas="c-libnss">libnss</primary>
  771. </indexterm>
  772. </listitem>
  773. </varlistentry>
  774. <varlistentry id="libpcprofile">
  775. <term><filename class="libraryfile">libpcprofile</filename></term>
  776. <listitem>
  777. <para>Can be preloaded to PC profile an executable</para>
  778. <indexterm zone="ch-system-glibc libpcprofile">
  779. <primary sortas="c-libpcprofile">libpcprofile</primary>
  780. </indexterm>
  781. </listitem>
  782. </varlistentry>
  783. <varlistentry id="libpthread">
  784. <term><filename class="libraryfile">libpthread</filename></term>
  785. <listitem>
  786. <para>The POSIX threads library</para>
  787. <indexterm zone="ch-system-glibc libpthread">
  788. <primary sortas="c-libpthread">libpthread</primary>
  789. </indexterm>
  790. </listitem>
  791. </varlistentry>
  792. <varlistentry id="libresolv">
  793. <term><filename class="libraryfile">libresolv</filename></term>
  794. <listitem>
  795. <para>Contains functions for creating, sending, and interpreting
  796. packets to the Internet domain name servers</para>
  797. <indexterm zone="ch-system-glibc libresolv">
  798. <primary sortas="c-libresolv">libresolv</primary>
  799. </indexterm>
  800. </listitem>
  801. </varlistentry>
  802. <varlistentry id="librt">
  803. <term><filename class="libraryfile">librt</filename></term>
  804. <listitem>
  805. <para>Contains functions providing most of the interfaces specified
  806. by the POSIX.1b Realtime Extension</para>
  807. <indexterm zone="ch-system-glibc librt">
  808. <primary sortas="c-librt">librt</primary>
  809. </indexterm>
  810. </listitem>
  811. </varlistentry>
  812. <varlistentry id="libthread_db">
  813. <term><filename class="libraryfile">libthread_db</filename></term>
  814. <listitem>
  815. <para>Contains functions useful for building debuggers for
  816. multi-threaded programs</para>
  817. <indexterm zone="ch-system-glibc libthread_db">
  818. <primary sortas="c-libthread_db">libthread_db</primary>
  819. </indexterm>
  820. </listitem>
  821. </varlistentry>
  822. <varlistentry id="libutil">
  823. <term><filename class="libraryfile">libutil</filename></term>
  824. <listitem>
  825. <para>Contains code for <quote>standard</quote> functions used in
  826. many different Unix utilities</para>
  827. <indexterm zone="ch-system-glibc libutil">
  828. <primary sortas="c-libutil">libutil</primary>
  829. </indexterm>
  830. </listitem>
  831. </varlistentry>
  832. </variablelist>
  833. </sect2>
  834. </sect1>