0

I have a pile of approx 20 rack servers to move out of the office and onto ebay or somewhere.

Can anyone recommend a good tool that will display some basic info like CPU type/speed/count/cores, memory, disks, controller card?

HopelessN00b
  • 53,385
  • 32
  • 133
  • 208
jqa
  • 451
  • 2
  • 7
  • The way the title is written, it sounds like you want to actually pull the innards out, so I'd recommend one of these: http://www.northerntool.com/shop/tools/product_200307439_200307439 – Ward - Reinstate Monica Dec 02 '11 at 06:56

8 Answers8

5

For Windows, my personal favorite is Speccy.

If they're servers, use the service tags!

Joel E Salas
  • 5,562
  • 15
  • 25
4

A usb bootable linux distro and lshw.

Joel K
  • 5,765
  • 2
  • 29
  • 34
3

Take a look at Open-AudIT. http://www.open-audit.org

Caveat - I'm the author.

Mark Unwin
  • 255
  • 1
  • 6
2

Cpuz rocks! also shows how many dimm slots, how many are populated, specs of memory and cpu chips... etc etc!

1

One good Option is 1) Lavasoft Everest

dSoultanis
  • 336
  • 1
  • 4
1

http://www.ocsinventory-ng.org/en/

This is a great free open source option.

ckliborn
  • 2,750
  • 4
  • 24
  • 36
1

I would try Belarc Advisor for a simple and quick summary of information: http://www.belarc.com/free_download.html

For more detailed infomration, try the Microsoft Assessment & Planning Toolkit: http://technet.microsoft.com/en-us/library/bb977556.aspx

1

With a cd/usb live linux distro a mix of commands:

(dmidecode; (lspci; lspci -n)|sort; lshw; hdparm -I /dev/diskdevice) > $(hostname -f)_$(date +%Y%m%d-%H%M).log

or

(dmidecode; (lspci; lspci -n)|sort; lshw; hdparm -I /dev/diskdevice) | tee -a $(hostname -f)_$(date +%Y%m%d-%H%M).log
f4m8
  • 291
  • 1
  • 4