Monday, April 25, 2011

Get memory info in Linux by command line

  • จากโพสนี้
  • http://juuier.blogspot.com/2009/01/command-line.html
  • รู้แต่ว่าใช้คำสั่ง free แต่ไม่รู้เลยว่า ค่าที่ได้หน่วยเป็นอะไร man free จึงได้พบคำตอบที่ต้องการ
  • The -b switch displays the amount of memory in bytes; the -k switch (set by default) displays it in kilo-bytes; the -m switch displays it in megabytes.
free -b >> bytes

free -k >> kilo-bytes

free -m >> megabytes
  • ถ้าต้องการดูแบบ update realtime ต้องคำสั่งนี้
watch free
  • แถมอีกคำสั่งสำหรับดูแบบไม่ realtime
cat /proc/meminfo

Refer

No comments:

Post a Comment

Popular Posts