check system resources (VPS) to see if match what I paid?

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat check system resources (VPS) to see if match what I paid?
# 1  
Old 06-01-2012
Question check system resources (VPS) to see if match what I paid?

Code:
-bash-3.2$ cat /etc/redhat-release
CentOS release 5.8 (Final)

Hello,

Our company recently paid a hosting company (who shall remain nameless) with certain service guarantees. Is there a simple way to list the CPU speed, RAM, Disk Space etc.

It is supposed to be;


25GB Disk Space, 500GB Premium Bandwidth, 512MB Memory

Is there a way to verify that they sold us this (Although "premium" anything is hard to gauge) ie is there a linux command that can verify this?
# 2  
Old 06-01-2012
For CPU speed:
Code:
grep -i mhz /proc/cpuinfo

For RAM:
Code:
free -m

For disk space:
Code:
df -h

This User Gave Thanks to admin_xor For This Post:
# 3  
Old 06-04-2012
for memory, I would even suggest the following:

Code:
vmstat -s -S M | egrep 'mem|swap'

Also, realize that if you are in a virtual server, you are NOT guaranteed any "MHz" value, per se. You are given timeshare slices against a CPU that relate to the approximate value of one of your CPUs, which may or may not be a real CPU, if they are doing hyperthreading.


My suggestion:

Performance test.
This User Gave Thanks to mark54g For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Ubuntu

Xorg is taking System Resources.

Hi All, I am facing System Speed problem.i saw in top command Xorg process was taking most of the time 20% of CPU and Memory.How to make it normal. Currently i am using AMD Athlon 64 HT technology processor(Socket 939) 512 DDR1 RAM Nvidia 5200 GeForce 128 MB Graphic card. i need help in... (2 Replies)
Discussion started by: arvindk.monu
2 Replies

2. UNIX for Advanced & Expert Users

Looking for utility to monitor system resources

Hi Community, I'm looking for a linux based utility for monitoring following system resources 1. Memory 2. CPU Usage I know there are plenty freewares which poll the data and print in form of html pages. For eg. MRTG, Novel's Linux Monitoring tools etc. But my requirement is deviated a... (1 Reply)
Discussion started by: anilgurwara
1 Replies

3. Shell Programming and Scripting

Check SMB-Connections (Resources in use?)

Hi, is it possible to check smb-connections of my server? I want to see, which files are opened from which station (ip). The command who only works local (via terminal). Regards. (4 Replies)
Discussion started by: inoxx
4 Replies

4. UNIX for Advanced & Expert Users

System Resources?

I am running a C program on a SCO box. There are multiple users on using the system resources. My problem is when using fprintfs in the program. I am writing to a log every thing I read in from a file after doing some formatting. I write out to the log with the fprintfs in groupings like 10... (3 Replies)
Discussion started by: jwolfe
3 Replies

5. UNIX for Dummies Questions & Answers

check resources

Hi all I would like to check my production machine and find out which application is using up the resources of the Unix machine, is there a way to display individual applications that are running and the percentage of resources they are taking up? (2 Replies)
Discussion started by: handynas
2 Replies

6. UNIX for Advanced & Expert Users

VI hogging system resources???

Hello all. I was on my pc last night when I noticed that my hard drive light was on and when I typed in "uptime" I recieved some crazy load averages. load average: 3.30, 3.07, 2.95. Anyway I type in "top" to see what processes are being the resource hogs and im surprised as hell to see that one... (2 Replies)
Discussion started by: ThePreacher
2 Replies
Login or Register to Ask a Question