source: general/sysutils/fcron.xml@ b4054a8

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since b4054a8 was b4054a8, checked in by Randy McMurchy <randy@…>, 19 years ago

Fixed typos in various Chapter 11 package instructions

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

  • Property mode set to 100644
File size: 9.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY fcron-download-http "http://fcron.free.fr/archives/fcron-&fcron-version;.src.tar.gz">
8 <!ENTITY fcron-download-ftp "ftp://ftp.seul.org/pub/fcron/fcron-&fcron-version;.src.tar.gz">
9 <!ENTITY fcron-md5sum "f408960f4c08ad377e61531ca48669bb">
10 <!ENTITY fcron-size "397 KB">
11 <!ENTITY fcron-buildsize "3.4 MB">
12 <!ENTITY fcron-time "0.10 SBU">
13]>
14
15<sect1 id="fcron" xreflabel="Fcron-&fcron-version;">
16 <?dbhtml filename="fcron.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Fcron-&fcron-version;</title>
24
25 <indexterm zone="fcron">
26 <primary sortas="a-Fcron">Fcron</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Fcron</title>
31
32 <para>The <application>Fcron</application> package contains a periodical
33 command scheduler which aims at replacing <application>Vixie
34 Cron</application>.</para>
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>Download (HTTP): <ulink url="&fcron-download-http;"/></para>
40 </listitem>
41 <listitem>
42 <para>Download (FTP): <ulink url="&fcron-download-ftp;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download MD5 sum: &fcron-md5sum;</para>
46 </listitem>
47 <listitem>
48 <para>Download size: &fcron-size;</para>
49 </listitem>
50 <listitem>
51 <para>Estimated disk space required: &fcron-buildsize;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated build time: &fcron-time;</para>
55 </listitem>
56 </itemizedlist>
57
58 <bridgehead renderas="sect3">Fcron Dependencies</bridgehead>
59
60 <bridgehead renderas="sect4">Optional</bridgehead>
61 <para><ulink url="../server/mail.html">MTA</ulink>,
62 <xref linkend="Linux_PAM"/>,
63 <ulink url="http://www.nsa.gov/selinux/">SELinux</ulink>,
64 <xref linkend="docbook-utils"/> and
65 <ulink url="../postlfs/editors.html">a text editor</ulink> (default is
66 <xref linkend="vim"/>)</para>
67
68 </sect2>
69
70 <sect2 role="installation">
71 <title>Installation of Fcron</title>
72
73 <para id="fcron-syslog"><application>Fcron</application> uses the cron facility
74 of <command>syslog</command> to log all messages. Since LFS
75 does not set up this facility in <filename>/etc/syslog.conf</filename>, it
76 needs to be done prior to installing <application>Fcron</application>. This
77 command will append the necessary line to the current
78 <filename>/etc/syslog.conf</filename> (perform as the
79 <systemitem class='username'>root</systemitem> user):</para>
80
81 <indexterm zone="fcron fcron-syslog">
82 <primary sortas="e-etc-syslog.conf">/etc/syslog.conf</primary>
83 </indexterm>
84
85<screen role="root"><userinput>cat &gt;&gt; /etc/syslog.conf &lt;&lt; "EOF"
86<literal># Begin fcron addition to /etc/syslog.conf
87
88cron.* -/var/log/cron.log
89
90# End fcron addition</literal>
91EOF</userinput></screen>
92
93 <para>The configuration file has been modified, so reloading the
94 <command>sysklogd</command> daemon will activate the changes (again as the
95 <systemitem class='username'>root</systemitem> user).</para>
96
97<screen role="root"><userinput>/etc/rc.d/init.d/sysklogd reload</userinput></screen>
98
99 <para>For security reasons, an unprivileged user and group for
100 <application>Fcron</application> should be created (perform as the
101 <systemitem class='username'>root</systemitem> user):</para>
102
103<screen role="root"><userinput>groupadd -g 22 fcron &amp;&amp;
104useradd -d /dev/null -c "Fcron User" -g fcron -s /bin/false -u 22 fcron</userinput></screen>
105
106 <para>Install <application>Fcron</application> by running the following
107 commands:</para>
108
109<screen><userinput>./configure --without-sendmail --with-boot-install=no &amp;&amp;
110make</userinput></screen>
111
112 <para>This package does not come with a test suite.</para>
113
114 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
115
116<screen role="root"><userinput>make install</userinput></screen>
117
118 </sect2>
119
120 <sect2 role="commands">
121 <title>Command Explanations</title>
122
123 <para><parameter>--without-sendmail</parameter>:
124 <application>Fcron</application> will use an installed MTA
125 to email you the results of the <command>fcron</command> script. Omit the
126 switch and use
127 <option>--with-sendmail=<replaceable>[/path/to/MTA]</replaceable></option>
128 if you wish to utilize this feature.</para>
129
130 <para><parameter>--with-boot-install=no</parameter>: This prevents installation
131 of the bootscript included with the package.</para>
132
133 </sect2>
134
135 <sect2 role="configuration">
136 <title>Configuring Fcron</title>
137
138 <sect3 id="fcron-config">
139 <title>Config Files</title>
140
141 <para><filename>/etc/fcron.conf</filename>,
142 <filename>/etc/fcron.allow</filename>, and
143 <filename>/etc/fcron.deny</filename></para>
144
145 <indexterm zone="fcron fcron-config">
146 <primary sortas="e-etc-fcron.conf">/etc/fcron.conf</primary>
147 </indexterm>
148
149 <indexterm zone="fcron fcron-config">
150 <primary sortas="e-etc-fcron.allow">/etc/fcron.allow</primary>
151 </indexterm>
152
153 <indexterm zone="fcron fcron-config">
154 <primary sortas="e-etc-fcron.deny">/etc/fcron.deny</primary>
155 </indexterm>
156
157 </sect3>
158
159 <sect3>
160 <title>Configuration Information</title>
161
162 <para>There are no required changes in any of the config files.
163 Configuration information can be found in the man page for
164 <filename>fcron.conf</filename>.</para>
165
166 <para><command>fcron</command> scripts are written using
167 <command>fcrontab</command>. Refer to the <command>fcrontab</command> man
168 page for proper parameters to address your situation.</para>
169
170 <para id="fcron-pam">If <application>Linux-PAM</application>
171 is installed, two PAM configuration files are installed in
172 <filename class='directory'>/etc/pam.d</filename>. Alternatively if
173 <filename class='directory'>/etc/pam.d</filename> is not used, the installation
174 will append two configuration sections to the exiting
175 <filename>/etc/pam.conf</filename> file. You should ensure the files match your
176 preferences. Modify them as required to suit your needs.</para>
177
178 <indexterm zone="fcron fcron-pam">
179 <primary sortas="e-etc-pam.d">/etc/pam.d/*</primary>
180 </indexterm>
181
182 <indexterm zone="fcron fcron-pam">
183 <primary sortas="e-etc-pam.conf">/etc/pam.conf</primary>
184 </indexterm>
185
186 </sect3>
187
188 <sect3 id="fcron-init">
189 <title>Boot Script</title>
190
191 <para>Install the <filename>/etc/rc.d/init.d/fcron</filename>
192 init script from the <xref linkend="intro-important-bootscripts"/>
193 package.</para>
194
195 <indexterm zone="fcron fcron-init">
196 <primary sortas="f-fcron">fcron</primary>
197 </indexterm>
198
199<screen role="root"><userinput>make install-fcron</userinput></screen>
200
201 </sect3>
202
203 </sect2>
204
205 <sect2 role="content">
206 <title>Contents</title>
207
208 <segmentedlist>
209 <segtitle>Installed Programs</segtitle>
210 <segtitle>Installed Libraries</segtitle>
211 <segtitle>Installed Directories</segtitle>
212
213 <seglistitem>
214 <seg>fcron, fcrondyn, fcronsighup, and fcrontab</seg>
215 <seg>None</seg>
216 <seg>/usr/share/doc/fcron-&fcron-version; and /var/spool/fcron</seg>
217 </seglistitem>
218 </segmentedlist>
219
220 <variablelist>
221 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
222 <?dbfo list-presentation="list"?>
223 <?dbhtml list-presentation="table"?>
224
225 <varlistentry id="fcron-prog">
226 <term><command>fcron</command></term>
227 <listitem>
228 <para>is the scheduling daemon.</para>
229 <indexterm zone="fcron fcron-prog">
230 <primary sortas="b-fcron">fcron</primary>
231 </indexterm>
232 </listitem>
233 </varlistentry>
234
235 <varlistentry id="fcrondyn">
236 <term><command>fcrondyn</command></term>
237 <listitem>
238 <para>is a user tool intended to interact with a running
239 <command>fcron</command> daemon.</para>
240 <indexterm zone="fcron fcrondyn">
241 <primary sortas="b-fcrondyn">fcrondyn</primary>
242 </indexterm>
243 </listitem>
244 </varlistentry>
245
246 <varlistentry id="fcronsighup">
247 <term><command>fcronsighup</command></term>
248 <listitem>
249 <para>instructs <command>fcron</command> to reread the
250 <application>Fcron</application> tables.</para>
251 <indexterm zone="fcron fcronsighup">
252 <primary sortas="b-fcronsighup">fcronsighup</primary>
253 </indexterm>
254 </listitem>
255 </varlistentry>
256
257 <varlistentry id="fcrontab">
258 <term><command>fcrontab</command></term>
259 <listitem>
260 <para>is a program used to install, edit, list and remove the
261 tables used by <command>fcron</command>.</para>
262 <indexterm zone="fcron fcrontab">
263 <primary sortas="b-fcrontab">fcrontab</primary>
264 </indexterm>
265 </listitem>
266 </varlistentry>
267
268 </variablelist>
269
270 </sect2>
271
272</sect1>
Note: See TracBrowser for help on using the repository browser.