ServerTestingProcedure

These are questions to help you test:

  • Did the installer complete without errors?
  • Has the CPU layout been detected correctly?
    • Does /proc/cpuinfo show what you expect?

      cat /proc/cpuinfo
    • When HT is enabled, your HT processors should show up twice.
    • Dual-core processors should show up twice.
    • Dual-core HT processors should show up four times.
  • Has the memory layout been detected correctly?
    • Look at the 'total' column, 'Mem:' row of free. Does this number equal the actual amount of RAM in the machine?

      free
  • Has the physical hard drive layout been detected correctly?
    • You should be able to notice this in the installer (on an installed machine, peruse dmesg(8) output or look at 'ls /dev/hd*' or 'ls /dev/sd*' for SCSI drives)
      dmesg
      ls /dev/hd*
      ls /dev/sh*
    • If the server supports hot-swappable hard drives, after the machine boots fully, attempt to hot-swap a drive. Did you encounter any problems? Is the machine still reporting the correct drive layout? This is generally only applicable if you're using Linux's software RAID. With hardware RAID, drive swapping should generally be transparent to the underlying OS.
  • Does connecting a serial console work as expected?
  • Have any RAID and storage controllers been detected correctly?
    • Look at lspci(8) output, and see if your RAID and/or storage controllers are present
      lspci
  • Have all the NICs been detected correctly?
    • Take a look at dmesg|grep eth and ip addr output.

      dmesg|grep eth
      ip addr

ServerTestingProcedure (last edited 2012-01-21 10:00:49 by vpn-3091)