source: general/sysutils/at.xml@ 4ad93b6

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

Update to unrar-5.0.8.
Update to sysstat-10.1.6.
Update to sg3_utils-1.36.
Update to mc-4.8.9.
Update to lm_sensors-3.3.4.
Update to colord-1.0.2.

Tag several packages as lfs73.

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

  • Property mode set to 100644
File size: 6.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY at-download-http "http://ftp.de.debian.org/debian/pool/main/a/at/at_&at-version;.orig.tar.gz">
8 <!ENTITY at-download-ftp "ftp://ftp.de.debian.org/debian/pool/main/a/at/at_&at-version;.orig.tar.gz">
9 <!ENTITY at-md5sum "1da61af6c29e323abaaf13ee1a8dad79">
10 <!ENTITY at-size "120 KB">
11 <!ENTITY at-buildsize "1.4 MB">
12 <!ENTITY at-time "less than 0.1 SBU">
13]>
14
15<sect1 id="at" xreflabel="Fcron-&at-version;">
16 <?dbhtml filename="at.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>at-&at-version;</title>
24
25 <indexterm zone="at">
26 <primary sortas="a-at">at</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to at</title>
31
32 <para>The <application>at</application> package provide delayed job execution
33 and batch processing. It is required for Linux Standards Base (LSB)
34 conformance.</para>
35
36 &lfs73_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&at-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&at-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &at-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &at-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &at-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &at-time;</para>
57 </listitem>
58 </itemizedlist>
59
60 <bridgehead renderas="sect3">at Dependencies</bridgehead>
61
62 <bridgehead renderas="sect4">Required</bridgehead>
63 <para role="required">
64 An MTA such as <xref linkend="postfix"/>, <xref linkend="sendmail"/>, or
65 <xref linkend="exim"/>
66 </para>
67
68 <bridgehead renderas="sect4">Optional</bridgehead>
69 <para role="optional">
70 <xref linkend="linux-pam"/>
71 </para>
72
73 <para condition="html" role="usernotes">User Notes:
74 <ulink url="&blfs-wiki;/at"/></para>
75
76 </sect2>
77
78 <sect2 role="installation">
79 <title>Installation of at</title>
80
81 <para>Before building <application>at</application>, as the
82 <systemitem class="username">root</systemitem> user you should create
83 the group and user <systemitem class="username">atd</systemitem> which
84 will run the <command>atd</command> daemon. Also ensure the working
85 directory for the daemon exists:</para>
86
87<screen role="root"><userinput>groupadd -g 17 atd &amp;&amp;
88useradd -d /dev/null -c "atd daemon" -g atd -s /bin/false -u 17 atd &amp;&amp;
89mkdir -p /var/spool/cron</userinput></screen>
90
91 <para>Install <application>at</application> with the following
92 commands:</para>
93
94 <screen><userinput>./configure --with-daemon_username=atd \
95 --with-daemon_groupname=atd &amp;&amp;
96make</userinput></screen>
97
98 <para>This package does not come with a test suite.</para>
99
100 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
101
102<screen role="root"><userinput>make install</userinput></screen>
103
104 </sect2>
105
106 <sect2 role="configuration">
107 <title>Configuring at</title>
108
109 <sect3 id="at-config">
110 <title>Config Files</title>
111
112 <para> <filename>/etc/at.allow</filename> and
113 <filename>/etc/at.deny</filename> determines who can submit jobs via at
114 or batch.</para>
115
116 <indexterm zone="at at-config">
117 <primary sortas="e-etc-at.allow">/etc/at.allow</primary>
118 </indexterm>
119
120 <indexterm zone="at at-config">
121 <primary sortas="e-etc-at.deny">/etc/at.deny</primary>
122 </indexterm>
123
124 </sect3>
125
126 <sect3 id="at-init">
127 <title>Boot Script</title>
128
129 <para>Install the <filename>/etc/init.d/atd</filename> init script from
130 the <xref linkend="bootscripts"/> package.</para>
131
132 <indexterm zone="at at-init">
133 <primary sortas="f-at">at</primary>
134 </indexterm>
135
136<screen role="root"><userinput>make install-atd</userinput></screen>
137
138 </sect3>
139
140 </sect2>
141
142 <sect2 role="content">
143 <title>Contents</title>
144
145 <segmentedlist>
146 <segtitle>Installed Programs</segtitle>
147 <segtitle>Installed Libraries</segtitle>
148 <segtitle>Installed Directories</segtitle>
149
150 <seglistitem>
151 <seg>at, atd, atrun, and batch</seg>
152 <seg>None</seg>
153 <seg>/var/spool/{atjobs,atspool}</seg>
154 </seglistitem>
155 </segmentedlist>
156
157 <variablelist>
158 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
159 <?dbfo list-presentation="list"?>
160 <?dbhtml list-presentation="table"?>
161
162 <varlistentry id="at-prog">
163 <term><command>at</command></term>
164 <listitem>
165 <para>queues, examines or deletes jobs for later execution.</para>
166 <indexterm zone="at at-prog">
167 <primary sortas="b-at">at</primary>
168 </indexterm>
169 </listitem>
170 </varlistentry>
171
172 <varlistentry id="atd">
173 <term><command>atd</command></term>
174 <listitem>
175 <para>is the daemon that runs jobs queued for later execution.</para>
176 <indexterm zone="at atd">
177 <primary sortas="b-atd">atd</primary>
178 </indexterm>
179 </listitem>
180 </varlistentry>
181
182 <varlistentry id="atrun">
183 <term><command>atrun</command></term>
184 <listitem>
185 <para>runs jobs queued for later execution.</para>
186 <indexterm zone="at atrun">
187 <primary sortas="b-atrun">atrun</primary>
188 </indexterm>
189 </listitem>
190 </varlistentry>
191
192 <varlistentry id="batch">
193 <term><command>batch</command></term>
194 <listitem>
195 <para>is a script that executes commands when system load levels permit.
196 </para>
197 <indexterm zone="at batch">
198 <primary sortas="b-batch">batch</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202
203 </variablelist>
204
205 </sect2>
206
207</sect1>
Note: See TracBrowser for help on using the repository browser.