source: general/sysutils/fcron/fcron-inst.xml@ 25357c89

initial-import reorg
Last change on this file since 25357c89 was f45b1953, checked in by Mark Hymers <markh@…>, 22 years ago

Initial revision

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

  • Property mode set to 100644
File size: 1.3 KB
Line 
1<sect2>
2<title>Installation of fcron</title>
3
4<para>Fcron uses the cron facility of syslog to log all messages. Since LFS
5does not set up this facility in /etc/syslog.conf, it needs to be done prior
6to installing fcron. This command will append the necessary line to the
7current <filename>/etc/syslog.conf</filename>.</para>
8
9<para><screen><userinput>cat &gt;&gt; /etc/syslog.conf &lt;&lt; "EOF"</userinput>
10# Begin fcron addition to /etc/syslog.conf
11
12cron.* -/var/log/cron.log
13
14# End fcron addition
15<userinput>EOF</userinput></screen></para>
16
17<para>The configuration file has been modified, so reloading the sysklogd
18daemon will activate the changes.</para>
19
20<para><screen><userinput>/etc/rc.d/init.d/sysklogd reload</userinput></screen></para>
21
22<para>Install fcron by running the following commands:</para>
23
24<para><screen><userinput>./configure &amp;&amp;
25make CC="gcc $CFLAGS" &amp;&amp;
26make install</userinput></screen></para>
27
28</sect2>
29
30<sect2>
31
32<title>Install fcron without MTA </title>
33
34<para>Fcron does not require a mail transfer agent (MTA) to run, but will
35use one if it is installed to email you the results of the fcron script. If
36you wish to install without a MTA, run the following commands:</para>
37
38<para><screen><userinput>./configure --without-sendmail &amp;&amp;
39make CC="gcc $CFLAGS" &amp;&amp;
40make install</userinput></screen></para>
41
42</sect2>
43
Note: See TracBrowser for help on using the repository browser.