获取 vmware 上存在的 cpu 数量的命令
是否有任何 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Linux
cat /proc/cpuinfo
获取处理器信息。cat /proc/meminfo
获取内存信息df -H
用于人类可读大小格式的分区信息lspci
用于 pci 设备信息(例如网卡)ifconfig
或ip addr sh
用于启用的网络接口(虚拟和物理)Windows
msinfo32 /report c:\sysinfo.txt
和type c:\sysinfo.txt
应该可以满足您的所有需求Linux
cat /proc/cpuinfo
for processor info.cat /proc/meminfo
for memory infodf -H
for partition info in human readable size formatlspci
for pci device info (such as network card)ifconfig
orip addr sh
for enabled network interfaces (virtual and physical)Windows
msinfo32 /report c:\sysinfo.txt
andtype c:\sysinfo.txt
should get you all you could wantvSphere PowerCLI 可以通过 powershell 为您执行此操作。从此处:
The vSphere PowerCLI can do this for you from powershell. From here:
无需使用“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"
lscpu
在 Linux 上也很有用。比cat /proc/cpuinfo
更具可读性lscpu
is also useful on Linux. More readable thancat /proc/cpuinfo