Hasil “jalan-jalan” di linuxjournal.com, ketemu tutorial ya bisa dibilang penting.
Berikut hasil copas dari thread di linuxjournal.com
www.simplyaddo.web.id
www.simplyaddo.web.id
www.simplyaddo.web.id
www.simplyaddo.web.id
Berikut hasil copas dari thread di linuxjournal.com
If you don’t want to step up to a full monitoring solution such as Nagios you can create your own scripts for monitoring the things that you want to monitor, such as disk space. The following script alerts you when your root partition is almost full:Berikut scriptnya
1 2 3 4 5 6 7 8 9 | #!/bin/bash CURRENT=$(df / | grep / | awk '{ print $5}' | sed 's/%//g') THRESHOLD=90 if [ "$CURRENT" -gt "$THRESHOLD" ] ; then mail -s 'Disk Space Alert' mailid@domainname.com << EOF Your root partition remaining free space is critically low. Used: $CURRENT% EOF fi |
The script sends an email when the disk usage rises above the percentage specified by the THRESHOLD varialbe (90% here).www.simplyaddo.web.id
To run it daily, for example, save the script to the file sample.sh in your home directory, change the email to your email, and add the following line at the end of /etc/crontab file:
@daily ~/sample.sh
www.simplyaddo.web.id
www.simplyaddo.web.id
www.simplyaddo.web.id
www.simplyaddo.web.id
0 komentar:
Post a Comment
Berkomentarlah yang baik dan bermanfaat bagi semua orang, jika kamu mau menempatkan link url pastikan berikan informasi yang bermanfaat pula