1 | <?xml version="1.0" encoding="ISO-8859-1"?>
|
---|
2 | <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
|
---|
3 | "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
|
---|
4 | <!ENTITY % general-entities SYSTEM "../../general.ent">
|
---|
5 | %general-entities;
|
---|
6 | ]>
|
---|
7 |
|
---|
8 | <sect1 id="intro-important-position">
|
---|
9 | <sect1info>
|
---|
10 | <othername>$LastChangedBy$</othername>
|
---|
11 | <date>$Date$</date>
|
---|
12 | </sect1info>
|
---|
13 | <?dbhtml filename="position.html"?>
|
---|
14 | <title>The /usr versus /usr/local debate</title>
|
---|
15 |
|
---|
16 | <para><emphasis>Should I install XXX in <filename>/usr</filename> or
|
---|
17 | <filename>/usr/local</filename>?</emphasis></para>
|
---|
18 |
|
---|
19 | <para>This is a question without an obvious answer for an
|
---|
20 | <acronym>LFS</acronym> based system.</para>
|
---|
21 |
|
---|
22 | <para>In traditional Unix systems, <filename>/usr</filename> usually
|
---|
23 | contains files that come with the system distribution, and the <filename>
|
---|
24 | /usr/local</filename> tree is free for the local administrator to manage.
|
---|
25 | The only really hard and fast rule is that Unix distributions should not
|
---|
26 | touch <filename>/usr/local</filename>, except perhaps to create the basic
|
---|
27 | directories within it.</para>
|
---|
28 |
|
---|
29 | <para>With Linux distributions, like Red Hat, Debian etc. a possible rule is
|
---|
30 | that <filename>/usr</filename> is managed by the distribution's
|
---|
31 | package system and <filename>/usr/local</filename> is not. This way the
|
---|
32 | package manager's database knows about every file within
|
---|
33 | <filename>/usr</filename>.</para>
|
---|
34 |
|
---|
35 | <para><acronym>LFS</acronym> users build their own system and so deciding where
|
---|
36 | the system ends and local files begin is not straightforward. So the choice
|
---|
37 | should be made in order to make things easier to administer. There are several
|
---|
38 | reasons for dividing files between <filename>/usr</filename> and
|
---|
39 | <filename>/usr/local</filename>.</para>
|
---|
40 |
|
---|
41 | <itemizedlist>
|
---|
42 |
|
---|
43 | <listitem><para>On a network of several machines all running <acronym>LFS</acronym>,
|
---|
44 | or mixed <acronym>LFS</acronym> and other Linux distributions,
|
---|
45 | <filename>/usr/local</filename> could be used to hold packages
|
---|
46 | that are common between all the computers in the network. It can be
|
---|
47 | <acronym>NFS</acronym> mounted or mirrored from a single server. Here local
|
---|
48 | indicates local to the site.</para></listitem>
|
---|
49 |
|
---|
50 | <listitem><para>On a network of several computers all running an identical
|
---|
51 | <acronym>LFS</acronym> system <filename>/usr/local</filename> could hold
|
---|
52 | packages that are different between the machines. In this case local refers
|
---|
53 | to the individual computers.</para></listitem>
|
---|
54 |
|
---|
55 | <listitem><para>Even on a single computer <filename>/usr/local</filename> can
|
---|
56 | be useful if you have several distributions installed simultaneously, and want
|
---|
57 | a place to put packages that will be the same on all of them.</para></listitem>
|
---|
58 |
|
---|
59 | <listitem><para>Or you might regularly rebuild your <acronym>LFS</acronym>, but
|
---|
60 | want a place to put files that you don't want to rebuild each time. This way
|
---|
61 | you can wipe the <acronym>LFS</acronym> file system and start from a clean
|
---|
62 | partition every time without losing everything.</para></listitem>
|
---|
63 |
|
---|
64 | </itemizedlist>
|
---|
65 |
|
---|
66 | <para>Some people ask why not use your own directory tree, e.g., <filename>
|
---|
67 | /usr/site</filename>, rather than <filename>/usr/local</filename>?</para>
|
---|
68 |
|
---|
69 | <para>There is nothing stopping you, many sites do make their own trees,
|
---|
70 | however it makes installing new software more difficult. Automatic installers
|
---|
71 | often look for dependencies in <filename>/usr</filename> and
|
---|
72 | <filename>/usr/local</filename>, and if the file it is looking
|
---|
73 | for is in <filename>/usr/site</filename> instead, the installer will
|
---|
74 | probably fail unless you specifically tell it where to look.</para>
|
---|
75 |
|
---|
76 | <para><emphasis>What is the <acronym>BLFS</acronym> position on this?</emphasis>
|
---|
77 | </para>
|
---|
78 |
|
---|
79 | <para>All of the <acronym>BLFS</acronym> instructions install programs in
|
---|
80 | <filename>/usr</filename> with optional instructions to install into
|
---|
81 | <filename>/opt</filename> for some specific packages.</para>
|
---|
82 |
|
---|
83 | </sect1>
|
---|