DbAppWeb.com

Menu
  • Home
  • Linux
  • HP-UX
  • macOS
  • Windows
  • Web Servers
  • App Servers
  • Storage

How to find system info, processor info, cache info, memory info etc from ESXi host CLI

February 9, 2018 DbAppWeb Admin

During an upgrade of a DELL PowerEdge R730/R830 server, we have increased the RAM from 24 GB to 88 GB and CPU from 1 to 2. After booting the system when we checked from the BIOS we found the system is showing 2 CPU but showing RAM only 72 GB, 2 RAM of 8 GB was not installed correctly. At that time we were not able to identify the slots for which RAM was detected.

Later I googled how to find system info, processor info, cache info, memory info, port connector details etc. and found the command smbiosDump through which we can get all the details related to the system hardware and the ESXi command-line interface (CLI) after login as root.

How to check System and Hardware Information on a Linux Server

HP-UX command to get Physical Memory Information

To log in to the ESXi shell as a root, the SSH service should be enabled and running on the ESXi host. To enable it you need to login to the ESXi host through vSphere Client and go to Configuration >> Software >> Security Profile >> Properties select SSH click on options and start the SSH service.

System Information

After login into the ESXi host run the smbiosDump command to get the system information.

[root@esxi_host:~] smbiosDump |grep -A 5 'System Info'
 System Info: #256
 Manufacturer: "Dell Inc."
 Product: "PowerEdge R830"
 Serial: "F294TF2"
 UUID: 3246544fc0c63480391000324c4c4544
 Wake-up: 0x06 (Power Switch)

Memory Information

The below command shows that the maximum memory which can be installed on the server, maximum of 2048 GB memory can be installed on this server

[root@esxi_host:~] smbiosDump |grep -A 4 'Physical Memory Array'
 Physical Memory Array: #4096
 Use: 0x03 (System memory)
 Location: 0x03 (Motherboard)
 Slots: 24
 Max. Size: 2048 GB

To see the details of all physical memory installed on the server with the details of location, size etc.

[root@esxi_host:~] smbiosDump |grep -A 12 'Memory Device'
 Memory Device: #4352
 Location: "A1"
 Manufacturer: "00AD063200AD"
 Serial: "28773764"
 Asset Tag: "001652B1"
 Part Number: "HMA42GR7AFR4N-TF"
 Memory Array: #4096
 Form Factor: 0x09 (DIMM)
 Type: 0x1a (DDR4)
 Type Detail: 0x2080 (Synchronous, Registered)
 Data Width: 64 bits (+8 ECC bits)
 Size: 16 GB
 Speed: 2133 MHz
 Memory Device: #4353
 Location: "A2"
 Manufacturer: "00AD00B300AD"
 Serial: "10A6538E"
 Asset Tag: "00152130"
 Part Number: "HMA42GR7AFR4N-TF"
 Memory Array: #4096
 Form Factor: 0x09 (DIMM)
 Type: 0x1a (DDR4)
 Type Detail: 0x2080 (Synchronous, Registered)
 Data Width: 64 bits (+8 ECC bits)
 Size: 16 GB
 Speed: 2133 MHz
.
.

Processor Information

Processor info showing the details of the both processors

[root@esxi_host:~] smbiosDump |grep -A 20 'Processor Info'
 Processor Info: #1024
 Payload length: 0x2a
 Socket: "CPU1"
 Socket Type: 0x2b (Socket LGA2011-3)
 Socket Status: Populated
 Type: 0x03 (CPU)
 Family: 0xb3 (Xeon)
 Manufacturer: "Intel"
 Version: "Intel(R) Xeon(R) CPU E5-4627 v4 @ 2.60GHz"
 Processor ID: 0xbfebfbff000406f1
 Status: 0x01 (Enabled)
 Voltage: 1.3 V
 External Clock: 8000 MHz
 Max. Speed: 4000 MHz
 Current Speed: 2600 MHz
 L1 Cache: #1792
 L2 Cache: #1793
 L3 Cache: #1794
 Core Count: #10
 Core Enabled Count: #10
 Thread Count: #10
 Processor Info: #1025
 Payload length: 0x2a
 Socket: "CPU2"
 Socket Type: 0x2b (Socket LGA2011-3)
 Socket Status: Populated
 Type: 0x03 (CPU)
 Family: 0xb3 (Xeon)
 Manufacturer: "Intel"
 Version: "Intel(R) Xeon(R) CPU E5-4627 v4 @ 2.60GHz"
 Processor ID: 0xbfebfbff000406f1
 Status: 0x01 (Enabled)
 Voltage: 1.3 V
 External Clock: 8000 MHz
 Max. Speed: 4000 MHz
 Current Speed: 2600 MHz
 L1 Cache: #1795
 L2 Cache: #1796
 L3 Cache: #1797
 Core Count: #10
 Core Enabled Count: #10
 Thread Count: #10

Cache Information

Cache Info showing the details of the L1, L2 and L3 cache for both the processors

[root@esxi_host:~] smbiosDump |grep -A 11 'Cache Info'
 Cache Info: #1792
 Level: L1
 State: Enabled
 Mode: 0x01 (Write Back)
 Location: 0x00 (Internal, Not Socketed)
 ECC: 0x04 (Parity)
 Type: 0x05 (Unified)
 Associativity: 0x07 (8-way Set-Associative)
 Max. Size: 640 kB
 Current Size: 640 kB
 Supported SRAM Types: 0x0002 (Unknown)
 Current SRAM Type: 0x0002 (Unknown)
 Cache Info: #1793
 Level: L2
 State: Enabled
 Mode: 0x01 (Write Back)
 Location: 0x00 (Internal, Not Socketed)
 ECC: 0x05 (Single-bit)
 Type: 0x05 (Unified)
 Associativity: 0x07 (8-way Set-Associative)
 Max. Size: 2560 kB
 Current Size: 2560 kB
 Supported SRAM Types: 0x0002 (Unknown)
 Current SRAM Type: 0x0002 (Unknown)
 Cache Info: #1794
 Level: L3
 State: Enabled
 Mode: 0x01 (Write Back)
 Location: 0x00 (Internal, Not Socketed)
 ECC: 0x05 (Single-bit)
 Type: 0x05 (Unified)
 Associativity: 0x0e (20-way Set-Associative)
 Max. Size: 25600 kB
 Current Size: 25600 kB
 Supported SRAM Types: 0x0002 (Unknown)
 Current SRAM Type: 0x0002 (Unknown)
 Cache Info: #1795
 Level: L1
 State: Enabled
 Mode: 0x01 (Write Back)
 Location: 0x00 (Internal, Not Socketed)
 ECC: 0x04 (Parity)
 Type: 0x05 (Unified)
 Associativity: 0x07 (8-way Set-Associative)
 Max. Size: 640 kB
 Current Size: 640 kB
 Supported SRAM Types: 0x0002 (Unknown)
 Current SRAM Type: 0x0002 (Unknown)
 Cache Info: #1796
 Level: L2
 State: Enabled
 Mode: 0x01 (Write Back)
 Location: 0x00 (Internal, Not Socketed)
 ECC: 0x05 (Single-bit)
 Type: 0x05 (Unified)
 Associativity: 0x07 (8-way Set-Associative)
 Max. Size: 2560 kB
 Current Size: 2560 kB
 Supported SRAM Types: 0x0002 (Unknown)
 Current SRAM Type: 0x0002 (Unknown)
 Cache Info: #1797
 Level: L3
 State: Enabled
 Mode: 0x01 (Write Back)
 Location: 0x00 (Internal, Not Socketed)
 ECC: 0x05 (Single-bit)
 Type: 0x05 (Unified)
 Associativity: 0x0e (20-way Set-Associative)
 Max. Size: 25600 kB
 Current Size: 25600 kB
 Supported SRAM Types: 0x0002 (Unknown)
 Current SRAM Type: 0x0002 (Unknown)

Port Connector Details

[root@esxi_host:~] smbiosDump |grep -A 3 'Port Connector'
 Port Connector: #2048
 Type: 0x10 (USB)
 External Designator: "Back USB port 1"
 External Connector: 0x12 (Access Bus [USB])
 Port Connector: #2049
 Type: 0x10 (USB)
 External Designator: "Front USB port 2"
 External Connector: 0x12 (Access Bus [USB])
 Port Connector: #2050
 Type: 0x10 (USB)
 Internal Designator: "Internal USB port 1"
 Internal Connector: 0x12 (Access Bus [USB])
 Port Connector: #2051
 Type: 0x10 (USB)
 External Designator: "Back USB port 2"
 External Connector: 0x12 (Access Bus [USB])
 Port Connector: #2052
 Type: 0x10 (USB)
 External Designator: "Front USB port 1"
 External Connector: 0x12 (Access Bus [USB])
 Port Connector: #2053
 Type: 0x1c (Video Port)
 External Designator: "Video port 1"
 External Connector: 0x07 (DB-15 pin female)
 Port Connector: #2054
 Type: 0x09 (Serial Port 16550A Compatible)
 External Designator: "Serial port 1"
 External Connector: 0x08 (DB-9 pin male)
 Port Connector: #2055
 Type: 0x1f (Network Port)
 External Designator: "3"
 External Connector: 0x0b (RJ-45)
 Port Connector: #2056
 Type: 0x1f (Network Port)
 External Designator: "4"
 External Connector: 0x0b (RJ-45)
 Port Connector: #2057
 Type: 0x1f (Network Port)
 External Designator: "1"
 External Connector: 0x0b (RJ-45)
 Port Connector: #2058
 Type: 0x1f (Network Port)
 External Designator: "2"
 External Connector: 0x0b (RJ-45)

Note: I have executed commands on the ESXi host running on the ESXi 6.0.0

Related Posts

  • HP-UX command to get Processor Information

  • HP-UX command to get Hardware Serial Number

  • How to find HBA cards/ports and WWN Number details in Linux

  • Linux command to get Hardware Serial Number

Share this:

  • Click to share on Twitter (Opens in new window)
  • Click to share on Facebook (Opens in new window)
  • Click to share on LinkedIn (Opens in new window)
  • Click to share on Telegram (Opens in new window)
  • Click to share on WhatsApp (Opens in new window)
Prev Article
Next Article
Tags:ESXi Hardware SSH Sys Admin Virtual Machine VMware

No Responses

  1. Pingback: Server Bug Fix: Check RAM speed on virtual machine - TECHPRPR

Leave a Reply Cancel Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

  • Popular
  • Recent

Categories

  • Android (2)
  • Blogger (16)
  • Domain and Hosting (1)
  • Hardware Issues (7)
  • HP-UX (55)
  • HPE Data Protector (9)
  • IBM Lotus Notes (2)
  • IBM WebSphere Application Server (16)
  • Internet Tips & Tricks (15)
  • iOS (8)
  • JBoss/WildFly Application Server (2)
  • Linux (76)
  • macOS (15)
  • Microsoft Windows (31)
  • News and Updates (11)
  • Oracle Database (5)
  • SSL/TLS (1)
  • Storage Servers (23)
  • Tools/Softwares (1)
  • VMware ESXi (17)
  • Web Servers (14)
  • WordPress (5)

Archives

DbAppWeb.com

Solution of Database, Application and Web Server Problems

About DbAppWeb.com

One Stop Solution for Database Server, Application Server and Web Server Problems.

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

DbAppWeb on Social Media

Copyright © 2025 DbAppWeb.com
Terms and Conditions   Theme by MyThemeShop.com