InterviewSolution
Saved Bookmarks
| 1. |
You Are Tasked To Set Up A Schedule To Perform Automatic Checks Of Available Disk Space At The End Of The Day. How Can You Accomplish This Task? |
|
Answer» To accomplish this task set up CRON to run a script that will check the disk space daily at 7:00 p.m. The output will be e-mailed to the root account. You can COMPARE the results from day to day to analyze disk space USAGE. Your cron file should look similar to the following: * 19 * * * DF -kl. To accomplish this task set up cron to run a script that will check the disk space daily at 7:00 p.m. The output will be e-mailed to the root account. You can compare the results from day to day to analyze disk space usage. Your cron file should look similar to the following: * 19 * * * df -kl. |
|