PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Tuesday, August 2, 2022

[FIXED] How to check the VPS server's RAM speed?

 August 02, 2022     linux, vps     No comments   

Issue

How to check the Linux VPS's RAM speed? Actually as per my VPS plan, I am supposed to get 2GB RAM, but I doubt that I am getting only 128MB. Please help me in finding the server's RAM speed.


Solution

If you want to know the amount of memory (wich seems more probable) you have available, not the speed of RAM, then consider using command free.

free -m

This will give you the ammount of memory you have available and memory in use, in MB.

See also: man free

Or if you really want to see your RAM speed then this might help

sudo lshw -short -C memory
H/W path           Device           Class          Description
==============================================================
/0/0                                memory         64KiB BIOS
/0/3a                               memory         16GiB System Memory
/0/3a/0                             memory         [empty]
/0/3a/1                             memory         8GiB DIMM DDR4 Synchronous 2666 MHz (0,4 ns)
/0/3a/2                             memory         [empty]
/0/3a/3                             memory         8GiB DIMM DDR4 Synchronous 2666 MHz (0,4 ns)
/0/44                               memory         384KiB L1 cache
/0/45                               memory         1536KiB L2 cache
/0/46                               memory         9MiB L3 cache
/0/100/14.2                         memory         RAM memory

man lshw



Answered By - Hendrik
Answer Checked By - David Goodson (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing