中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問手機版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認證|工資待遇與招聘,認準(zhǔn)超級網(wǎng)工!

招聘|合作 登陸|注冊

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點關(guān)注 > linux常用命令

【Linux學(xué)習(xí)】Linux free 命令學(xué)習(xí)

時間:2019-09-23

linux重啟命令_linux 關(guān)機命令_linux命令

本文鏈接:

因為最近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命令語句