本文鏈接:
因為最近Gitlab服務(wù)器占用內(nèi)存很多,也在下面的這篇博客里面寫了怎么減少Gitlab占用的內(nèi)存問題。
+【Git學(xué)習(xí)】解決GitLab內(nèi)存消耗大的問題
但是一開始并沒有很清楚的明白free命令的每一個數(shù)據(jù)到底代表的什么意思,導(dǎo)致一直以為優(yōu)化沒有效果。后面認真學(xué)習(xí)了下free命令,先看看
操作系統(tǒng)版本是Ubuntu 14.04
linux的內(nèi)核版本號是 3.13.0-24-generic
root@ubuntu116:~# uname -r
3.13.0-24-generic
您在 /var/mail/root 中有新郵件
root@ubuntu116:~# uname -a
Linux ubuntu116 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
您在 /var/mail/root 中有新郵件
root@ubuntu116:~# cat /proc/version
Linux version 3.13.0-24-generic (buildd@panlong) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014
root@ubuntu116:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 14.04 LTS
Release: 14.04
Codename: trusty
root@ubuntu116:~#
首先是要 free --help命令,來查看下free命令的用法。
root@ubuntu116:~# free --help
Usage:
free [options]
Options:
-b, --bytes show output in bytes
-k, --kilo show output in kilobytes
-m, --mega show output in megabytes
-g, --giga show output in gigabytes
--tera show output in terabytes
-h, --human show human-readable output
--si use powers of 1000 not 1024
-l, --lohi show detailed low and high memory statistics
-o, --old use old format (without -/+buffers/cache line)
-t, --total show total for RAM + swap
-s N, --seconds N repeat printing every N seconds
-c N, --count N repeat printing N times, then exit
--help display this help and exit
-V, --version output version information and exit
For more details see free(1).
上一個教程:常用linux命令語句
下一個教程:linux常用命令 應(yīng)付面試 筆試