# Cis Ubuntu1604 V200 5 1 1

> Ensure cron daemon is enabled and running

- Skill: `cyberstrikeus/cis-ubuntu1604-v200-5-1-1` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberstrikeus/cis-ubuntu1604-v200-5-1-1`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberstrikeus/cis-ubuntu1604-v200-5-1-1/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: cyberstrikeus (https://skillmd.com/u/cyberstrikeus)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/cyberstrikeus/cis-ubuntu1604-v200-5-1-1

---


# CIS Ubuntu Linux 16.04 LTS Benchmark v2.0.0 - 5.1.1

## Profile Applicability

- Level 1 - Server
- Level 1 - Workstation

## Description

The `cron` daemon is used to execute batch jobs on the system.

Note: Other methods, such as `systemd timers`, exist for scheduling jobs. If another method is used, `cron` should be removed, and the alternate method should be secured in accordance with local site policy.

## Rationale

While there may not be user jobs that need to be run on the system, the system does have maintenance jobs that may include security monitoring that have to run, and `cron` is used to execute them.

## Impact

None.

## Audit Procedure

### Command Line

Run the following command to verify `cron` is enabled:

```bash
systemctl is-enabled cron
```

Run the following command to verify that `cron` is running:

```bash
systemctl status cron | grep 'Active: active (running) '
```

## Expected Result

The first command should return:

```
enabled
```

The second command should return:

```
Active: active (running) since <Day Date Time>
```

## Remediation

### Command Line

Run the following command to enable and start `cron`:

```bash
systemctl --now enable cron
```

## Default Value

By default, cron is enabled and running.

## References

None.

## CIS Controls

| Controls Version | Control                                              |
| ---------------- | ---------------------------------------------------- |
| v7               | 6 Maintenance, Monitoring and Analysis of Audit Logs |

## Assessment Status

Automated

