8 hours ago
How can I configure aide linux to start at the selected time of the week, e.g. on Sundays at 9?
15 hours ago
Do a which aide and copy the result (assuming /usr/bin/aide)
which aide
/usr/bin/aide
Add a line to crontab -e with format
crontab -e
0 9 * * Sun /usr/bin/aide --check
OR to /etc/crontab:
/etc/crontab
0 9 * * Sun {user} /usr/bin/aide --check