source: basicnet/djb/daemontools/daemontools-exp.xml@ 126cdcd7

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 126cdcd7 was 0482b012, checked in by Larry Lawrence <larry@…>, 21 years ago

exp files tag cleaned

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1274 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 3.0 KB
RevLine 
[f45b1953]1<sect2>
2<title>Command explanations</title>
3
4<para>The first thing to understand in installing any package written
5by Daniel J. Bernstein, and
[29f033a]6this includes <application>qmail</application>, <application>djbdns
7</application> and <application>ucspi-tcp</application> in addition to
8<application>daemontools</application>, is that he is willing to completely
9disregard standards if his idea of the correct thing to do differs from an
10particular standard. Professor Bernstein is a standards body unto himself when
11it comes to his own software. </para>
[f45b1953]12
13<para>It is therefore necessary to make quite a few changes to the
14installation commands for his packages to get them to install in a manner
[29f033a]15that is compliant with the Filesystem Hierarchy Standard
16(<acronym>FHS</acronym>). Most of the following commands are due to this
17difficulty.</para>
[f45b1953]18
[0482b012]19<para><command>cd admin/daemontools-0.76</command>: First off, the package is
[29f033a]20unpacked in an <filename>admin</filename> directory. You will find the actual
[f45b1953]21packages two directory levels below this.</para>
22
[0482b012]23<para><command>package/compile</command>: This command actually
[8e6d39f1]24compiles the source and prepares the binaries.</para>
[f45b1953]25
[29f033a]26<para>Since we are installing the binaries in <filename>/usr/sbin</filename>
27rather than creating a non-standard <filename>/command</filename> directory,
28several paths have to be changed:</para>
29<screen><command>sed 's|command|usr/sbin|' boot.inittab &gt; boot.inittab~
30mv boot.inittab~ boot.inittab</command></screen>
[0d1379a]31<para>In <filename>boot.inittab</filename>,
32<filename>/command/svscanboot</filename> is changed to
33<filename>/usr/sbin/svscanboot</filename>.</para>
[c8010baf]34
[29f033a]35<screen><command>sed -e 's|/command:/usr/local/bin:/usr/local/sbin:||' \
36 -e 's|command|usr/sbin|' \
37 -e 's|/service|/etc/service|g' svscanboot &gt; svscanboot~ &amp;&amp;</command></screen>
[6998c44a]38<para>Here various paths are adjusted in the <command>svscanboot</command>
39script. In our setup <command>svscan</command> will check the
40<filename>/etc/service</filename> directory instead of
[29f033a]41the <filename>/service</filename> directory for daemons to run.</para>
[f45b1953]42
[0482b012]43<para><command>cp * /usr/sbin</command>: We must manually copy the
[0d1379a]44binaries to the <filename>/usr/sbin</filename> directory.</para>
[f45b1953]45
[29f033a]46<para><screen><command>cat /etc/inittab boot.inittab &gt; /etc/inittab~
47mv -f /etc/inittab~ /etc/inittab</command></screen>
48These commands append a line to <filename>/etc/inittab</filename> so that
49<command>init</command> will launch the <command>svscanboot</command> script.
50</para>
[c8010baf]51
[0482b012]52<para><command>mkdir /etc/service</command>: This command creates
[6998c44a]53the <application>daemontools</application> control directory, which - even if
54empty - needs to exist for
[29f033a]55<application>daemontools</application> to run properly.</para>
[f45b1953]56
[0482b012]57<para><command>telinit Q</command>: This command tells the <command>init
[29f033a]58</command> process to re-read its configuration file
59(<filename>inittab</filename>) and act upon any changes that have been made.
60The <command>svscanboot</command> script is started.</para>
[f45b1953]61
62
63</sect2>
64
Note: See TracBrowser for help on using the repository browser.