Horje
check ram on linux Code Example
linux ram size
$ cat /proc/meminfo
how to get ram detail in linux
sudo dmidecode --type 17
check ram on linux
free -m
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%
check ram in linux
free -g
check vm ram details in linux
sudo dmidecode -t 17




Shell

Related
how to assign an ad group to a folder mac os terminal Code Example how to assign an ad group to a folder mac os terminal Code Example
count sub files in folder linux Code Example count sub files in folder linux Code Example
number of files in subdirectories linux Code Example number of files in subdirectories linux Code Example
check how much memory linux Code Example check how much memory linux Code Example
grab ipaddress in variable linux Code Example grab ipaddress in variable linux Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11