source: general/sysutils/fcron.xml@ 482314a

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 482314a was 482314a, checked in by Bruce Dubbs <bdubbs@…>, 17 years ago

Clarified command explanation in fcron

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

  • Property mode set to 100644
File size: 9.5 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 "8e5dcb3a646c11294294895954ef0a48">
10 <!ENTITY fcron-size "532 KB">
11 <!ENTITY fcron-buildsize "4.6 MB">
12 <!ENTITY fcron-time "0.1 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 role="optional">An <xref linkend="server-mail"/>,
62 <ulink url="../postlfs/editors.html">text editor</ulink> (default is
63 <command>vi</command> from the <xref linkend="vim"/> package),
64 <xref linkend="linux-pam"/>,
65 <xref linkend="docbook-utils"/>
66 </para>
67
68 <para condition="html" role="usernotes">User Notes:
69 <ulink url="&blfs-wiki;/fcron"/></para>
70
71 </sect2>
72
73 <sect2 role="installation">
74 <title>Installation of Fcron</title>
75
76 <para id="fcron-syslog"><application>Fcron</application> uses the cron facility
77 of <command>syslog</command> to log all messages. Since LFS
78 does not set up this facility in <filename>/etc/syslog.conf</filename>, it
79 needs to be done prior to installing <application>Fcron</application>. This
80 command will append the necessary line to the current
81 <filename>/etc/syslog.conf</filename> (perform as the
82 <systemitem class='username'>root</systemitem> user):</para>
83
84 <indexterm zone="fcron fcron-syslog">
85 <primary sortas="e-etc-syslog.conf">/etc/syslog.conf</primary>
86 </indexterm>
87
88<screen role="root"><userinput>cat &gt;&gt; /etc/syslog.conf &lt;&lt; "EOF"
89<literal># Begin fcron addition to /etc/syslog.conf
90
91cron.* -/var/log/cron.log
92
93# End fcron addition</literal>
94EOF</userinput></screen>
95
96 <para>The configuration file has been modified, so reloading the
97 <command>sysklogd</command> daemon will activate the changes (again as the
98 <systemitem class='username'>root</systemitem> user).</para>
99
100<screen role="root"><userinput>/etc/rc.d/init.d/sysklogd reload</userinput></screen>
101
102 <para>For security reasons, an unprivileged user and group for
103 <application>Fcron</application> should be created (perform as the
104 <systemitem class='username'>root</systemitem> user):</para>
105
106<screen role="root"><userinput>groupadd -g 22 fcron &amp;&amp;
107useradd -d /dev/null -c "Fcron User" -g fcron -s /bin/false -u 22 fcron</userinput></screen>
108
109 <para>Install <application>Fcron</application> by running the following
110 commands:</para>
111
112<screen><userinput>./configure --without-sendmail --with-boot-install=no &amp;&amp;
113make</userinput></screen>
114
115 <para>This package does not come with a test suite.</para>
116
117 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
118
119<screen role="root"><userinput>make install</userinput></screen>
120
121 </sect2>
122
123 <sect2 role="commands">
124 <title>Command Explanations</title>
125
126 <para><parameter>--without-sendmail</parameter>: By default,
127 <application>Fcron</application> will use <xref linkend="sendmail"/>
128 to email you the results of the <command>fcron</command> script. Omit this
129 switch to use <application>sendmail</application> or
130 <option>--with-sendmail=<replaceable>&lt;/path/to/MTA&gt;</replaceable></option>
131 to use a different MTA.</para>
132
133 <para><parameter>--with-boot-install=no</parameter>: This prevents installation
134 of the bootscript included with the package.</para>
135
136 <para><option>--with-editor=<replaceable>&lt;/path/to/editor&gt;</replaceable></option>:
137 This switch allows you to set the default text editor.</para>
138
139 </sect2>
140
141 <sect2 role="configuration">
142 <title>Configuring Fcron</title>
143
144 <sect3 id="fcron-config">
145 <title>Config Files</title>
146
147 <para><filename>/etc/fcron.conf</filename>,
148 <filename>/etc/fcron.allow</filename>, and
149 <filename>/etc/fcron.deny</filename></para>
150
151 <indexterm zone="fcron fcron-config">
152 <primary sortas="e-etc-fcron.conf">/etc/fcron.conf</primary>
153 </indexterm>
154
155 <indexterm zone="fcron fcron-config">
156 <primary sortas="e-etc-fcron.allow">/etc/fcron.allow</primary>
157 </indexterm>
158
159 <indexterm zone="fcron fcron-config">
160 <primary sortas="e-etc-fcron.deny">/etc/fcron.deny</primary>
161 </indexterm>
162
163 </sect3>
164
165 <sect3>
166 <title>Configuration Information</title>
167
168 <para>There are no required changes in any of the config files.
169 Configuration information can be found in the man page for
170 <filename>fcron.conf</filename>.</para>
171
172 <para><command>fcron</command> scripts are written using
173 <command>fcrontab</command>. Refer to the <command>fcrontab</command> man
174 page for proper parameters to address your situation.</para>
175
176 <para id="fcron-pam">If <application>Linux-PAM</application>
177 is installed, two PAM configuration files are installed in
178 <filename class='directory'>/etc/pam.d</filename>. Alternatively if
179 <filename class='directory'>/etc/pam.d</filename> is not used, the installation
180 will append two configuration sections to the exiting
181 <filename>/etc/pam.conf</filename> file. You should ensure the files match your
182 preferences. Modify them as required to suit your needs.</para>
183
184 <indexterm zone="fcron fcron-pam">
185 <primary sortas="e-etc-pam.d">/etc/pam.d/*</primary>
186 </indexterm>
187
188 <indexterm zone="fcron fcron-pam">
189 <primary sortas="e-etc-pam.conf">/etc/pam.conf</primary>
190 </indexterm>
191
192 </sect3>
193
194 <sect3 id="fcron-init">
195 <title>Boot Script</title>
196
197 <para>Install the <filename>/etc/rc.d/init.d/fcron</filename>
198 init script from the <xref linkend="bootscripts"/>
199 package.</para>
200
201 <indexterm zone="fcron fcron-init">
202 <primary sortas="f-fcron">fcron</primary>
203 </indexterm>
204
205<screen role="root"><userinput>make install-fcron</userinput></screen>
206
207 </sect3>
208
209 </sect2>
210
211 <sect2 role="content">
212 <title>Contents</title>
213
214 <segmentedlist>
215 <segtitle>Installed Programs</segtitle>
216 <segtitle>Installed Libraries</segtitle>
217 <segtitle>Installed Directories</segtitle>
218
219 <seglistitem>
220 <seg>fcron, fcrondyn, fcronsighup, and fcrontab</seg>
221 <seg>None</seg>
222 <seg>/usr/share/doc/fcron-&fcron-version; and /var/spool/fcron</seg>
223 </seglistitem>
224 </segmentedlist>
225
226 <variablelist>
227 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
228 <?dbfo list-presentation="list"?>
229 <?dbhtml list-presentation="table"?>
230
231 <varlistentry id="fcron-prog">
232 <term><command>fcron</command></term>
233 <listitem>
234 <para>is the scheduling daemon.</para>
235 <indexterm zone="fcron fcron-prog">
236 <primary sortas="b-fcron">fcron</primary>
237 </indexterm>
238 </listitem>
239 </varlistentry>
240
241 <varlistentry id="fcrondyn">
242 <term><command>fcrondyn</command></term>
243 <listitem>
244 <para>is a user tool intended to interact with a running
245 <command>fcron</command> daemon.</para>
246 <indexterm zone="fcron fcrondyn">
247 <primary sortas="b-fcrondyn">fcrondyn</primary>
248 </indexterm>
249 </listitem>
250 </varlistentry>
251
252 <varlistentry id="fcronsighup">
253 <term><command>fcronsighup</command></term>
254 <listitem>
255 <para>instructs <command>fcron</command> to reread the
256 <application>Fcron</application> tables.</para>
257 <indexterm zone="fcron fcronsighup">
258 <primary sortas="b-fcronsighup">fcronsighup</primary>
259 </indexterm>
260 </listitem>
261 </varlistentry>
262
263 <varlistentry id="fcrontab">
264 <term><command>fcrontab</command></term>
265 <listitem>
266 <para>is a program used to install, edit, list and remove the
267 tables used by <command>fcron</command>.</para>
268 <indexterm zone="fcron fcrontab">
269 <primary sortas="b-fcrontab">fcrontab</primary>
270 </indexterm>
271 </listitem>
272 </varlistentry>
273
274 </variablelist>
275
276 </sect2>
277
278</sect1>
Note: See TracBrowser for help on using the repository browser.