Cron Flashcards

1
Q

Formato de cron

A
          • user-name command to be executed
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Cual es el archivo de anacron

A

/etc/anacrontab

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Cual es el folder de crons

A

/etc/cron.d

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Folders de jobs por hora día semana y mes

A

/etc/cron.hourly/, /etc/cron.daily/, /etc/cron.weekly/, and /etc/cron.monthly/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Como se colocan los archivos de anacron

A

Se coloca directamente un shellscript

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Como se llama el timer de systemd

A

sysstat-collect.timer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Como se modifica el sysstat-collect.timer para que Corra cada 5 min en vez en 10

A

Se copia el archivo /usr/lib/systemd/system/sysstat-collect.timer
A

/etc/systemd/system

Se modifica OnCalendar=*:00/10

A

OnCalendar=*:00/05

systemctl daemon-reload

systemctl enable –now .timer

systemctl enable –now sysstat-collect.timer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Como se hace un script que corra con un usuario pero que lo loggue en el log de sistema

A
#!/bin/bash
USERCOUNT=$(w -h | wc -l)
logger "There are currently ${USERCOUNT} active users"

chmod +x /etc/cron.daily/usercount

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Como se llama el paquete de timer sysstat-collect.timer

A

yum install sysstat

How well did you know this?
1
Not at all
2
3
4
5
Perfectly