From the course: Cert Prep LPIC-1 Exam 102 (Version 5.0)

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Configure user access to cron and at services

Configure user access to cron and at services - Linux Tutorial

From the course: Cert Prep LPIC-1 Exam 102 (Version 5.0)

Start my 1-month free trial

Configure user access to cron and at services

- When a Linux system boots up, certain services are run automatically by system D. We can enable services so they start automatically, or disable them so they don't. To see what services are enabled or disabled, type into a terminal systemctl, space, list-unit-files, space -at, space, service, and hit enter. Let's choose a service that's enabled, and disable it. I'm going to choose atd.service. Press Q to quit, and then type in sudo space systemctl space disable space atd, and hit enter. Type in your password, then hit enter again. We can press the up arrow key twice to bring back our list unit files line and hit enter. We can now see that our atd.service is disabled. Press Q to quit. We can also use a simpler command. Type in systemctl space is-enabled space atd, and hit enter. To re-enable atd, we'll use the systemctl command again. Type in sudo space systemctl space enable space atd and hit enter. And verify with…

Contents