The at package provide delayed job execution and batch processing. It is required for Linux Standards Base (LSB) conformance.
This package is known to build and work properly using an LFS-7.4 platform.
Download (HTTP): http://ftp.de.debian.org/debian/pool/main/a/at/at_3.1.14.orig.tar.gz
Download (FTP): ftp://ftp.de.debian.org/debian/pool/main/a/at/at_3.1.14.orig.tar.gz
Download MD5 sum: d41cfd79033b6e49a8838add59a42ac6
Download size: 124 KB
Estimated disk space required: 1.8 MB
Estimated build time: less than 0.1 SBU
An MTA such as Postfix-2.10.2, sendmail-8.14.7, or Exim-4.80.1
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/at
Before building at, as the
root
user you should create the
group and user atd
which will run
the atd daemon. Also
ensure the working directory for the daemon exists:
groupadd -g 17 atd && useradd -d /dev/null -c "atd daemon" -g atd -s /bin/false -u 17 atd && mkdir -p /var/spool/cron
Install at with the following commands:
./configure --with-daemon_username=atd \ --with-daemon_groupname=atd && make
This package does not come with a test suite.
Now, as the root
user:
make install
Install the /etc/init.d/atd
init
script from the blfs-bootscripts-20130908 package.
make install-atd
Last updated on 2013-09-09 15:17:21 -0700