瀏覽模式: 普通 | 列表

收集Linux上前幾大工具的網站--

google搜尋新功能? -- 預覽

滑鼠指到紅色圈圈的地方,它會有淺藍色的框框,滑鼠點它,右邊就會開啟預覽功能,底下的連結就會都有,如果再點一次就取消了

attachments/201011/8255639321.png
標籤: google 預覽 搜尋

現在手機上網應用滿普及的了

有個網站(http://detectmobilebrowser.com/)針對是不是透過手機來瀏覽你的網站作了一規則編寫

像 apache 的話就點選藍色 apache 的部份下載它的規則內容套用在自已網站底下即可

這樣子假如你的網站有專門為手機而來的就可以重導它至其頁面了

當然這個網站還有對其它程式也有個別的規則內容,就看怎麼應用它了 

min.us 輕鬆分享你的照片,圖片

只要瀏覽到這個網站 min.us

首頁就會跟你說直接把圖托到它的頁面上
attachments/201010/5201532315.png

再來就可以方便的分享你的圖片了

attachments/201010/2819564337.png

nagios 可以用來監控主機的服務運作狀態,比方說 ping不ping的到、http可不可以瀏覽等等,

以上都是被監控者不需要作什麼額外設定就可以即時被監控得到的,

假如現在我要監控遠端主機的 CPU、硬碟空間、記憶體等等,怎麼作?

Nagios 提供了一個外掛,叫 NRPE (Nagios Remote Plugin Executor),

它可以讓 nagios server 在固定時間去抓 nagios client 被監控的項目回來判斷是否ok。

如何作 :

Nagios Client 端 (被監控者) ------------------------------

[閱讀全文]

標籤: nagios nrpe 監控

Office 2010 怎麼看郵件原始檔

office 2010 跟以往的介面完全不同了,還摸來摸去半天才能了然,也有可能遇到死胡同

像我要查看郵件的原始內容也花了一些時間

怎麼看它呢,如下

attachments/201010/5768530774.png
attachments/201010/1968541160.png

原來它叫網際網路標題  >,.<"

Linux 釋放 cache 記憶體

有三種方式

quote: http://www.linuxinsight.com/proc_sys_vm_drop_caches.html

Writing to this will cause the kernel to drop clean caches, dentries and inodes from memory, causing that memory to become free.

To free pagecache:

echo 1 > /proc/sys/vm/drop_caches
To free dentries and inodes:

echo 2 > /proc/sys/vm/drop_caches
To free pagecache, dentries and inodes:

echo 3 > /proc/sys/vm/drop_caches
As this is a non-destructive operation, and dirty objects are not freeable, the user should run "sync" first in order to make sure all cached objects are freed.

但作這個之前記得先 sync 資料

之前
attachments/201010/4704785367.png

之後
attachments/201010/5601090200.png


標籤: linux memory cache