To get the number of processor
====================
less /proc/cpuinfo | grep processor
To get the details of each processor and number of core
=======================
# very detailed information
less /proc/cpuinfo | less
# summary information how many core/processor etc
lscpu
To get the RAM size
=============
1. In human readable format
free -g
free -m
2. In more details
less /proc/meminfo
To get the disk size
=============
1. In human readable format
df -h
Total size of a folder
===============
Enter into folder and then
du -ch | grep total
Comments
Post a Comment