如何检查VPS服务器的RAM速度?
如何查看Linux VPS的RAM速度?实际上,根据我的 VPS 计划,我应该获得 2GB RAM,但我怀疑我是否只获得 128MB。请帮我找到服务器的 RAM 速度。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有多种方法可以检查 Linux 虚拟专用服务器 (VPS) 上的内存使用情况。请参阅此操作方法了解更多信息详细信息:
使用“/proc/meminfo”命令检查内存使用情况:
cat /proc/meminfo
使用“free -m”命令检查内存使用情况:
free -m
使用“top”命令检查内存使用情况:
top
使用“vmstat”命令检查内存使用情况:
vmstat
There are several ways on how to check the memory usage on linux virtual Private Server (VPS). Refer to this howto for more details :
Check memory usage using “/proc/meminfo” command:
cat /proc/meminfo
Check memory usage using “free -m” command :
free -m
Check memory usage using “top” command :
top
Check memory usage using “vmstat” command :
vmstat
如果您想知道可用的内存量(这似乎更有可能),而不是 RAM 的速度,那么请考虑使用 command free。
这将为您提供可用内存量和正在使用的内存量(以 MB 为单位)。
另请参阅: man free
或者如果您确实想查看您的 RAM 速度那么这可能会有所帮助
man lshw
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.
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
man lshw
如果您想了解内存容量,可以在命令行/终端上使用“top”。总内存在左上角表示为...
如果您想获取内存速度信息,您可能会在 VPS 下遇到问题...您始终可以使用类似 RAMspeed,但我不知道如何获得准确的频率/延迟/等。有关 VPS 的信息。
If you want to find out the memory capacity, you can use "top" on the command-line/terminal. The total memory is expressed in the top left as ...
If you want to obtain memory speed information, you'll probably encounter problems under a VPS ... you can always get arbitrary performance figures using something like RAMspeed, but I'm not aware of a way to get accurate frequency/latency/etc. information on a VPS.