Is there any cli command to know the configuration details of VM like, number of existing cpus, number of network cards etc., in VM.

link|improve this question
feedback

2 Answers

The vSphere PowerCLI can do this for you from powershell. From here:

Get-VM | `
  ForEach-Object {
    $Report = "" | Select-Object -property Name,NumCpu,MemoryMB,Host,IPAddress
    $Report.Name = $_.Name
    $Report.NumCpu = $_.NumCpu
    $Report.MemoryMB = $_.MemoryMB
    $Report.Host = $_.Host
    $Report.IPAddress = $_.Guest.IPAddress
  Write-Output $Report
  } | Export-Csv "C:\VM.csv"
link|improve this answer
feedback

Linux

cat /proc/cpuinfo for processor info.
cat /proc/meminfo for memory info
df -H for partition info in human readable size format
lspci for pci device info (such as network card)
ifconfig or ip addr sh for enabled network interfaces (virtual and physical)

Windows

msinfo32 /report c:\sysinfo.txt and type c:\sysinfo.txt should get you all you could want

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.