名称¶
podman-machine-info - 显示机器主机信息
概要¶
podman machine info
描述¶
显示有关机器主机的的信息。仅限无根模式,因为所有 podman machine
命令只能与无根 Podman 一起使用。
注意:Host
输出中的 DefaultMachine
字段并不意味着可以通过系统连接设置默认的 podman 机器。此值代表与 podman 机器关联的当前活动系统连接。无论默认的系统连接是什么,默认的 podman 机器始终为 podman-machine-default
。
选项¶
--format, -f=format¶
将输出格式更改为“json”或 Go 模板。
占位符 |
描述 |
---|---|
.Host … |
本地机器的主机信息 |
.Version … |
机器的版本 |
--help¶
打印使用说明。
示例¶
显示默认的 Podman 机器信息。
$ podman machine info
Host:
Arch: amd64
CurrentMachine: ""
DefaultMachine: ""
EventsDir: /run/user/3267/podman
MachineConfigDir: /home/myusername/.config/containers/podman/machine/qemu
MachineImageDir: /home/myusername/.local/share/containers/podman/machine/qemu
MachineState: ""
NumberOfMachines: 0
OS: linux
VMType: qemu
Version:
APIVersion: 4.4.0
Built: 1677097848
BuiltTime: Wed Feb 22 15:30:48 2023
GitCommit: aa196c0d5c9abd5800edf9e27587c60343a26c2b-dirty
GoVersion: go1.20
Os: linux
OsArch: linux/amd64
Version: 4.4.0
以 json 格式显示默认的 Podman 机器信息。
$ podman machine info --format json
{
"Host": {
"Arch": "amd64",
"CurrentMachine": "",
"DefaultMachine": "",
"EventsDir": "/run/user/3267/podman",
"MachineConfigDir": "/home/myusername/.config/containers/podman/machine/qemu",
"MachineImageDir": "/home/myusername/.local/share/containers/podman/machine/qemu",
"MachineState": "",
"NumberOfMachines": 0,
"OS": "linux",
"VMType": "qemu"
},
"Version": {
"APIVersion": "4.4.0",
"Version": "4.4.0",
"GoVersion": "go1.20",
"GitCommit": "aa196c0d5c9abd5800edf9e27587c60343a26c2b-dirty",
"BuiltTime": "Wed Feb 22 15:30:48 2023",
"Built": 1677097848,
"OsArch": "linux/amd64",
"Os": "linux"
}
}
显示默认的 Podman 机器 Host.Arch 字段。
$ podman machine info --format "{{ .Host.Arch }}"
amd64
另请参阅¶
历史¶
2022 年 6 月,最初由 Ashley Cui acui@redhat.com 编译