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
Answered By - Hendrik Answer Checked By - David Goodson (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.