# Cis Ubuntu1804 V220 4 1 1

> Ensure cron daemon is enabled and active

- Skill: `cyberstrikeus/cis-ubuntu1804-v220-4-1-1` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberstrikeus/cis-ubuntu1804-v220-4-1-1`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberstrikeus/cis-ubuntu1804-v220-4-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-ubuntu1804-v220-4-1-1

---


# CIS Ubuntu Linux 18.04 LTS Benchmark v2.2.0 - Control 4.1.1

## Profile Applicability

- Level 1 - Server
- Level 1 - Workstation

## Description

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

## 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.

## Audit Procedure

### Command Line

Run the following command to verify that cron is enabled and active:

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

### Expected Result

```
enabled
active
```

## Remediation

### Command Line

Run the following commands to enable and start cron:

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

## References

1. NIST SP 800-53 Rev. 5: CM-1, CM-2, CM-6, CM-7, IA-5

## CIS Controls

v8 - 4.1 Establish and Maintain a Secure Configuration Process - Establish and maintain a secure configuration process for enterprise assets (end-user devices, including portable and mobile, non-computing/IoT devices, and servers) and software (operating systems and applications).

## Profile Applicability

- Level 1 - Server
- Level 1 - Workstation

## Assessment Status

Automated

