可以提生效能
看了一下設定內容
做了調整
看起來卡巴斯基的記憶體消耗
明顯變少了
怎麼開啟了
下面介紹一下設定流程
選擇「設定」選項
再點選「暫停檔案防護」選項
由於我工作時會開啟 Visual Studio 2017
所以用這個判斷是否開啟
你們可以依據自己的需求作調整
#!/bin/bash
echo "== Ubuntu == run check-disk =="
team_url=【你 team 的 url】
alert=50
df -H | grep -vE '^Filesystem|tmpfs' | awk '{ print $5 " " $6 }' | while read output;
do
usepercent=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 )
partition=$(echo $output | awk '{ print $2 }' )
if [ $usepercent -ge $alert ]; then
if [ $partition = '/' ]; then
curl -H "Content-Type: application/json" -d "{\"text\":\"$(date) $(hostname) Disk Space Alert= $partition($usepercent%) \"}" $team_url
break
fi
fi
done
echo "== Ubuntu == stop check-disk =="
sudo apt-get update
sudo apt install curl
chmod +x check-disk.sh
0 0 * * * /home/ubuntu/check-disk.sh >> ~/disk.log
0 * * * * /home/ubuntu/check-disk.sh >> ~/disk.log
sudo timedatectl set-timezone "Asia/Taipei"
sudo service cron restart
參考文章: 覺得 Google 的 Blogger 不太順手?透過 HTML 的 iframe 移花接木 HackMD