---
2.12. I have sysstat setup to run via cron:
```
-0 * * * * /usr/local/lib/sa/sa1 600 6 &
+0 * * * * /usr/local/lib/sa/sa1 600 6
```
so that I get an activity report every 10 minutes.
When I use sar to get my output, there is no reading for `00:00:00`. This
data for midnight at the end of each daily data file:
```
# Activity reports every 10 minutes from 01:00:00 to 22:50:00
-0 1-22 * * * /usr/local/lib/sa/sa1 600 6 &
+0 1-22 * * * /usr/local/lib/sa/sa1 600 6
# Activity reports every 10 minutes from 23:00:00 to 00:00:00
# Reporting until 00:00:00 ensures that a file rotation will be detected
# by sadc
-0 23 * * * /usr/local/lib/sa/sa1 600 7 &
+0 23 * * * /usr/local/lib/sa/sa1 600 7
# Activity reports every 10 minutes from 00:10:00 to 00:50:00
-10 0 * * * /usr/local/lib/sa/sa1 600 5 &
+10 0 * * * /usr/local/lib/sa/sa1 600 5
```
Another possible crontab would be:
```
# /usr/lib/sa for example).
#
# 8am-7pm activity reports every 20 minutes during weekdays.
-# 0 8-18 * * 1-5 @SA_LIB_DIR@/sa1 1200 3 &
+# 0 8-18 * * 1-5 @SA_LIB_DIR@/sa1 1200 3
# activity reports every @CRON_INTERVAL@ minutes everyday.
-0 * * * * @SA_LIB_DIR@/sa1 @CRON_INTERVAL_SEC@ @CRON_COUNT@ &
+0 * * * * @SA_LIB_DIR@/sa1 @CRON_INTERVAL_SEC@ @CRON_COUNT@
#
# Activity reports every an hour on Saturday and Sunday.
-# 0 * * * 0,6 @SA_LIB_DIR@/sa1 &
+# 0 * * * 0,6 @SA_LIB_DIR@/sa1
#
# 7pm-8am activity reports every an hour during weekdays.
-# 0 19-7 * * 1-5 @SA_LIB_DIR@/sa1 &
+# 0 19-7 * * 1-5 @SA_LIB_DIR@/sa1
#
# Previous day summary prepared at 00:07.
-# 7 0 * * 1-5 @SA_LIB_DIR@/sa2 -A &
-7 0 * * * @SA_LIB_DIR@/sa2 -A &
+# 7 0 * * 1-5 @SA_LIB_DIR@/sa2 -A
+7 0 * * * @SA_LIB_DIR@/sa2 -A
# Generate a daily summary of process accounting. Since this will probably
# get kicked off in the morning, it would probably be better to run against
# the previous days data.
-@SA_LIB_DIR@/sa2 -A &
+@SA_LIB_DIR@/sa2 -A
#!/bin/sh
# Run system activity accounting tool every @CRON_INTERVAL@ minutes
-@SA_LIB_DIR@/sa1 @CRON_INTERVAL_SEC@ @CRON_COUNT@ &
+@SA_LIB_DIR@/sa1 @CRON_INTERVAL_SEC@ @CRON_COUNT@
# Run system activity accounting tool every @CRON_INTERVAL@ minutes
*/@CRON_INTERVAL@ * * * * @CRON_OWNER@ @SA_LIB_DIR@/sa1 1 1
-# 0 * * * * @CRON_OWNER@ @SA_LIB_DIR@/sa1 @CRON_INTERVAL_SEC@ @CRON_COUNT@ &
+# 0 * * * * @CRON_OWNER@ @SA_LIB_DIR@/sa1 @CRON_INTERVAL_SEC@ @CRON_COUNT@
# Generate a text summary of previous day process accounting at 00:07
7 0 * * * @CRON_OWNER@ @SA_LIB_DIR@/sa2 -A
.B sa2
command daily, place the following entry in your root crontab file:
-.B 5 19 * * 1-5 @SA_LIB_DIR@/sa2 -A &
+.B 5 19 * * 1-5 @SA_LIB_DIR@/sa2 -A
This will generate by default a daily report called
.I sarDD