man-pages/man8/ldconfig.8

171 lines
3.9 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" -*- nroff -*-
.\" Copyright 1999 SuSE GmbH Nuernberg, Germany
.\" Author: Thorsten Kukuk <kukuk@suse.de>
.\"
.\" This program is free software; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as
.\" published by the Free Software Foundation; either version 2 of the
.\" License, or (at your option) any later version.
.\"
.\" This program is distributed in the hope that it will be useful,
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
.\" General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public
.\" License along with this program; see the file COPYING. If not,
.\" write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
.\" Boston, MA 02111-1307, USA.
.\"
.\" Modified, 6 May 2002, Michael Kerrisk, <mtk-manpages@gmx.net>
2004-11-03 13:51:07 +00:00
.\" Change listed order of /usr/lib and /lib
2007-05-18 10:09:18 +00:00
.TH LDCONFIG 8 2002-05-06 "GNU" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
/sbin/ldconfig \- configure dynamic linker run time bindings
.SH SYNOPSIS
.B /sbin/ldconfig
[
.B \-nNvXV
]
[
.BR \-f\ conf
]
[
.BR \-C\ cache
]
[
.BR \-r\ root
]
.IR directory \ ...
.PD 0
.PP
.PD
.BR /sbin/ldconfig
.B \-l
[
.B \-v
]
.IR library \ ...
.PD 0
.PP
.PD
.B /sbin/ldconfig
.B \-p
.SH DESCRIPTION
.B ldconfig
creates the necessary links and cache to the most recent shared
libraries found in the directories specified on the command line,
in the file
.IR /etc/ld.so.conf ,
and in the trusted directories
.RI ( /lib
and
.IR /usr/lib ).
The cache is used by the run-time linker,
.IR ld.so
or
.IR ld-linux.so .
.B ldconfig
2006-02-12 22:15:41 +00:00
checks the header and filenames of the libraries it encounters when
2004-11-03 13:51:07 +00:00
determining which versions should have their links updated.
.PP
.B ldconfig
will attempt to deduce the type of ELF libs (ie. libc5 or libc6/glibc)
based on what C libs, if any, the library was linked against.
.\" The following sentence looks suspect
2006-02-08 09:44:13 +00:00
.\" (perhaps historical cruft) -- MTK, Jul 2005
.\" Therefore, when making dynamic libraries,
.\" it is wise to explicitly link against libc (use \-lc).
2004-11-03 13:51:07 +00:00
.PP
Some existing libs do not contain enough information to allow the deduction of
their type.
Therefore, the
2004-11-03 13:51:07 +00:00
.IR /etc/ld.so.conf
file format allows the specification of an expected type.
This is
2005-11-02 13:55:25 +00:00
.I only
used for those ELF libs which we can not work out.
The format
2004-11-03 13:51:07 +00:00
is "dirname=TYPE", where TYPE can be libc4, libc5, or libc6.
(This syntax also works on the command line.)
Spaces are
2005-11-02 13:55:25 +00:00
.I not
allowed.
Also see the
2005-07-06 07:41:37 +00:00
.B \-p
2004-11-03 13:51:07 +00:00
option.
.B ldconfig
should normally be run by the superuser as it may require write
2004-11-03 13:51:07 +00:00
permission on some root owned directories and files.
.SH OPTIONS
.TP
.B \-v
Verbose mode.
Print current version number, the name of each directory as it
is scanned, and any links that are created.
Overrides quiet mode.
.TP
.B \-n
Only process directories specified on the command line.
Don't process the trusted directories
.RI ( /lib
and
.IR /usr/lib )
nor those specified in
.IR /etc/ld.so.conf .
Implies
.BR \-N .
.TP
.B \-N
Don't rebuild the cache.
Unless
.B \-X
is also specified, links are still updated.
.TP
.B \-X
Don't update links.
Unless
.B \-N
is also specified, the cache is still rebuilt.
.TP
.B \-f conf
Use
.B conf
instead of
.IR /etc/ld.so.conf .
.TP
.B \-C cache
Use
.B cache
instead of
.IR /etc/ld.so.cache .
.TP
.B \-r root
Change to and use
2005-11-02 13:55:25 +00:00
.I root
2004-11-03 13:51:07 +00:00
as the root directory.
.TP
.B \-l
Library mode.
Manually link individual libraries.
Intended for use by experts only.
2004-11-03 13:51:07 +00:00
.TP
.B \-p
Print the lists of directories and candidate libraries stored in
the current cache.
.SH FILES
.PD 0
.TP 20
2005-11-02 13:55:25 +00:00
.I /lib/ld.so
2004-11-03 13:51:07 +00:00
run-time linker/loader
.TP 20
2005-11-02 13:55:25 +00:00
.I /etc/ld.so.conf
2005-06-24 14:58:43 +00:00
File containing a list of colon, space, tab, newline, or comma-separated
2004-11-03 13:51:07 +00:00
directories in which to search for libraries.
.TP 20
2005-11-02 13:55:25 +00:00
.I /etc/ld.so.cache
2004-11-03 13:51:07 +00:00
File containing an ordered list of libraries found in the directories
specified in
2005-11-02 13:55:25 +00:00
.IR /etc/ld.so.conf .
2004-11-03 13:51:07 +00:00
.PD