How to check RAM and number of CPUs on a VPS?

Status
Not open for further replies.
2 comments
Try this:
free -m
echo "Number of CPU threads: $(cat /proc/cpu* | grep processor | wc -l)"


cpu details:
cat /proc/cpu*
 
Last edited:
This will hellp you

cat /proc/meminfo
free -m

check your server memory resources for every one secconds


watch -n 1 -d free -m


To check CPU usages
watch -n 1 mpstat -P ALL



with reagards,
Bluewelthost.com
 
Status
Not open for further replies.
Back
Top