How to check your new dedicated server?
by Harun Yayli on Sunday, September 16th, 2007 at 3:24 pm under Operating Systems, Web Hosting
You’ve just bought a new dedicated server, what should you do before moving?
Check what is promissed and what is given!
- Check the CPU
# dmesg | grep "CPU:"
CPU: Intel(R) Pentium(R) 4 CPU 2.80GHz (2813.54-MHz 686-class CPU) - Memory
#dmesg | grep memory
real memory = 1072627712 (1022 MB)
avail memory = 1040084992 (991 MB) - Hard Disk
#di -th | grep Total
Total 104.4G 1.2G 94.8G 9%
- Number of IPs (I’ve masked my ips with ?)
#ifconfig -a | grep inet
inet ??.???.??.?? netmask 0xffffffe0 broadcast ??.???.?.?
inet ??.???.??.?? netmask 0xffffffe0 broadcast ??.???.?.?
inet ??.???.??.?? netmask 0xffffffe0 broadcast ??.???.?.?
inet 127.0.0.1 netmask 0xff000000
Recent Entries
- memcache.php can delete keys now
- memcache.php is now part of pecl/memcache
- memcache.php goes PECL
- memcache.php stats like apc.php
- oci_bind_by_name maxlength is not so optional
- Is Sun going to buy PHP too?(PHP Quebec 2008)
- PHP APC apc_shm_create error on CLI
- Facebook’s Buggy Spam Detection
- Is it Firefox or Zend Debugger? Cookie Standards
- ezComponents ready for prod?
What about
September 17th, 2007 at 12:14 pmcat /proc/meminfo | grep MemTotal
cat /proc/cpuinfo | grep “model name”
Andrew:
September 17th, 2007 at 1:02 pmboth would work if you’re on a linux. Thanks.