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?

link|improve this question
The way the title is written, it sounds like you want to actually pull the innards out, so I'd recommend one of these: northerntool.com/shop/tools/product_200307439_200307439 – Ward Dec 2 '11 at 6:56
feedback

8 Answers

up vote 4 down vote accepted

A usb bootable linux distro and lshw.

link|improve this answer
feedback

For Windows, my personal favorite is Speccy.

If they're servers, use the service tags!

link|improve this answer
+1. There are a billion utilities that do this but Speccy is a good one. I also like SIW. – joeqwerty Dec 2 '11 at 3:17
feedback

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

Caveat - I'm the author.

link|improve this answer
1  
+1 great tool, thank you Mark – Danilo Brambilla Dec 2 '11 at 9:19
feedback

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

link|improve this answer
feedback

One good Option is 1) Lavasoft Everest

link|improve this answer
feedback

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

This is a great free open source option.

link|improve this answer
feedback

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

link|improve this answer
feedback

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
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.