From b08f4096533577934b885fa9df41d3881d141612 Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Thu, 15 Feb 2001 15:26:52 +0000 Subject: Initial XML commit git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@174 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/config-ldso.sgml | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 chapter06/config-ldso.sgml (limited to 'chapter06/config-ldso.sgml') diff --git a/chapter06/config-ldso.sgml b/chapter06/config-ldso.sgml deleted file mode 100644 index c340db151..000000000 --- a/chapter06/config-ldso.sgml +++ /dev/null @@ -1,43 +0,0 @@ - -Configuring Dynamic Loader - - -By default the dynamic loader searches a few default paths for dynamic -libraries, so there normally isn't a need for the -/etc/ld.so.conf file unless you have extra -directories in which you want the system to search for paths. The -/usr/local/lib directory isn't -searched through for dynamic libraries by default, so we want to add -this path so when you install software you won't be suprised by them not -running for some reason. - - - -Create a new file /etc/ld.so.conf by running the -following: - - - - -cat > /etc/ld.so.conf << "EOF" -# Begin /etc/ld.so.conf - -/lib -/usr/lib -/usr/local/lib - -# End /etc/ld.so.conf -EOF - - - - -Although it's not necessary to add the -/lib and -/usr/lib directories it doesn't -hurt. This way you see right away what's being searched and don't have -to remeber the default search paths if you don't want to. - - - - -- cgit v1.2.3-54-g00ecf