How to Verify Your VPS's Actual Specs Match What You Ordered

After deployment, confirming your VPS actually has the resources you ordered is good practice — both for peace of mind and to catch any provisioning issue early.

Step 1 — Check Your CPU Allocation

nproc

Shows the number of CPU cores available to your VPS — compare against what your ordered plan specifies.

Step 2 — Check More Detailed CPU Information

lscpu

Provides additional detail on CPU architecture and specifications, useful if your plan specifies particular CPU characteristics beyond just core count.

Step 3 — Check Your RAM Allocation

free -h

Shows total available memory — compare the "total" figure against your ordered plan's RAM specification.

Step 4 — Check Your Disk Space

df -h /

Shows total disk space on your root filesystem — compare against your plan's storage specification.

Step 5 — Check Your Network Speed (If Specified)

speedtest-cli

Requires installing speedtest-cli first (sudo apt install speedtest-cli -y) — useful if your plan specifies a particular network port speed, though actual results can vary based on network conditions during the test.

Step 6 — Check Your Assigned IP Address(es)

curl ifconfig.me

Compare against what's listed in your Client Area's service details.

What to Do If Specs Don't Match

  1. Double-check exactly what your specific plan/order actually specifies, since minor confusion between similar plan tiers happens
  2. Take a screenshot of the command output for reference
  3. Contact support with the specific discrepancy if it genuinely doesn't match after careful verification

Understanding Minor Discrepancies

Some minor differences between advertised and shown specs can be normal — for example, total RAM shown by the OS may be very slightly less than the nominal figure due to reserved system memory; a small difference isn't necessarily a provisioning error, though a significant discrepancy warrants investigation.

Checking Immediately After Deployment

Performing this verification as part of your initial setup (see Your First 24 Hours With a New VPS: A Checklist) catches any provisioning issue while it's freshest and easiest to address, rather than discovering it much later.

Common Questions

Why does "free -h" show slightly less RAM than my plan specifies?
A small amount is typically reserved for the hypervisor/virtualization layer — a minor difference is generally normal and not a cause for concern.

Continue Reading

Browse more articles in Getting Started / VPS Basics.

  • verify vps specs, check vps resources match order, confirm vps specifications, vps provisioning check
  • 0 Bu dökümanı faydalı bulan kullanıcılar:
Bu cevap yeterince yardımcı oldu mu?

İlgili diğer dökümanlar

How to Connect to Your VPS via SSH (Windows, macOS & Linux)

SSH (Secure Shell) is the standard way to remotely access and manage a Linux VPS. This guide...

How to Create a New User with Sudo Access on a Linux VPS

Using the root account for everyday administration is risky — a single mistyped command can...

How to Check VPS Resource Usage (CPU, RAM & Disk)

Monitoring your VPS's resource usage helps you catch performance problems before they cause...

How to Reboot a Linux VPS Safely

Rebooting is sometimes required — after a kernel update, to apply certain configuration...

VPS Terminology: A Beginner's Glossary

New to VPS hosting? This glossary explains the most common terms you'll encounter while setting...