获取 vmware 上存在的 cpu 数量的命令

发布于 2024-11-02 17:06:06 字数 61 浏览 1 评论 0原文

是否有任何 cli 命令可以了解 VM 中的配置详细信息,例如 VM 中现有 cpu 的数量、网卡的数量等。

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

月光色 2024-11-09 17:06:06

Linux

cat /proc/cpuinfo 获取处理器信息。
cat /proc/meminfo 获取内存信息
df -H 用于人类可读大小格式的分区信息
lspci 用于 pci 设备信息(例如网卡)
ifconfigip addr sh 用于启用的网络接口(虚拟和物理)

Windows

msinfo32 /report c:\sysinfo.txttype c:\sysinfo.txt 应该可以满足您的所有需求

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

滥情空心 2024-11-09 17:06:06

vSphere PowerCLI 可以通过 powershell 为您执行此操作。从此处

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"

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"
风月客 2024-11-09 17:06:06

无需使用“foreach-object”powershell 即可管理它。

获取虚拟机 |选择对象-属性名称、NumCpu、MemoryMB、主机、IP 地址 |导出-CSV“C:\VM.csv”

No need to use 'foreach-object' powershell can manage it.

Get-VM | Select-Object -property Name,NumCpu,MemoryMB,Host,IPAddress | Export-Csv "C:\VM.csv"

ペ泪落弦音 2024-11-09 17:06:06

lscpu 在 Linux 上也很有用。比 cat /proc/cpuinfo 更具可读性

lscpu is also useful on Linux. More readable than cat /proc/cpuinfo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文