ServerTestingProcedure

Differences between revisions 7 and 8
Revision 7 as of 2008-03-04 22:51:05
Size: 1653
Editor: dsl-207-112-70-57
Comment:
Revision 8 as of 2008-03-04 22:52:41
Size: 1711
Editor: dsl-207-112-70-57
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from ServerTestingTeam/TestProcedure

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 ifconfig -a output.

      dmesg|grep eth
      ifconfig -a

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