You have mail in /var/spool/mail/root.Can someone tell me what does this mean?
32 Answers
A task has run on your machine that had some output, but had nowhere to leave it. So it sent you an email. Because there is no full email system on your machine either, all it could do was to write a message in /var/spool/mail/root.
Switch to the root user and see what the mail is about:
sudo less /var/spool/mail/root 1 Run
crontab -eand add output to your cron jobs. If you want to disable emails for just one cron job, you will need to redirect its output to
/dev/null by adding > /dev/null 2>&1 at the end of the line. For example:
* * * * */5 /path/to/command arguments > /dev/null 2>&1 1