Answers for "check memory hd usage linux"

11

check how much memory linux

free -m
Posted by: Guest on May-04-2020
1

linux command to check memory usage in percentage

$ free -t | awk 'NR == 2 {printf("Current Memory Utilization is : %.2f%"), $3/$2*100}'
or
$ free -t | awk 'FNR == 2 {printf("Current Memory Utilization is : %.2f%"), $3/$2*100}'

Current Memory Utilization is : 20.42%
Posted by: Guest on June-10-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language