I want to know what is command which will show me servers hardware [through ssh access], like how much Gb RAM is installed, cpu speed, and so on.
Thank You.
|
feedback
|
I have found lshw to be an invaluable resource in gathering hardware information that is otherwise difficult to gather without cracking the servers case (BIOS version, Motherboard model number, which slots of RAM are populated, etc) A good writeup/overview of lshw can be found here | |||
feedback
|
|
More specific information about hardware may be given by a | |||
|
feedback
|
|
Try the following commands:
This will first show you the amount of RAM (in MB) installed in your system. Then the CPU Name and speed - it will output it for each (virtual)core. lspci lists all PCI devices and the dmesg log shows you all kernel messages which include initialization of hardware. That should cover about everything they build into your system. | |||
|
feedback
|