- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 vboxmanage list -l vms
,我想通过提供 Name
和 Groups
值来提取特定机器的 UUID .
Name: vm2
Groups: /C05Lab1
Guest OS: Oracle (64-bit)
UUID: 54c233e8-3d5b-46bb-9a21-a8946ffa7d76
Config file: C:\Users\Bianca\VirtualBox VMs\C05Lab1\vm2\vm2.vbox
Snapshot folder: C:\Users\Bianca\VirtualBox VMs\C05Lab1\vm2\Snapshots
Log folder: C:\Users\Bianca\VirtualBox VMs\C05Lab1\vm2\Logs
Hardware UUID: 54c233e8-3d5b-46bb-9a21-a8946ffa7d76
我必须:
vboxmanage list -l vms | awk '$1=="UUID:"{uid=$2} /Name: *vm2/{print uid}'
它至少列出了一个 uuid,但不是正确的(它在它之前打印机器的 uuid)而且我不知道如何检查 Groups
值,因为它以/
最佳答案
使用您展示的示例,请尝试遵循 awk
代码。
vboxmanage list -l vms |
awk -v name="vm2" -v group="C05Lab1" '
/^Name:/{
foundName=foundGroup=""
if($2==name){ foundName=1 }
next
}
/^Groups:/ && $2==group{
foundGroup=1
next
}
/^UUID:/ && foundName && foundGroup{
print
foundName=foundGroup=""
}'
说明:在此处添加详细说明。
vboxmanage list -l vms | ##Running command vboxmanage list -l vms and sending its Output to awk as an input.
awk -v name="vm2" -v group="C05Lab1" ' ##Starting awk command from here and setting name to vm2 and group to C05Lab1 here.
/^Name:/{ ##Checking condition if line starts with Name: then do following.
foundName=foundGroup="" ##Nullifying foundName and foundGroup here.
if($2==name){ foundName=1 } ##Checking condition if 2nd field is name then set foundName to 1 here.
next ##next will skip all further statements from here.
}
/^Groups:/ && $2==group{ ##Checking condition if line starts from Groups: and 2nd field is group then do following.
foundGroup=1 ##Setting foundGroup to 1 here.
next ##next will skip all further statements from here.
}
/^UUID:/ && foundName && foundGroup{ ##Checking condition if line starts from UUID: and foundName and foundGroup are set then do following.
print ##Printing currnet line here.
foundName=foundGroup="" ##Nullifying foundName and foundGroup here.
}'
由 Ed Morton 编辑以展示注释代码的另一种方法,即注释说为什么我们正在做某事而不是什么我们正在做:
vboxmanage list -l vms |
awk -v name="vm2" -v group="C05Lab1" ' # Set variables to contain the Name: and Groups: values we want to find in the input
/^Name:/{ # We assume that every record starts with Name: and so we clear the
foundName=foundGroup="" # foundName and foundGroup flags here so that when we hit the UUID:
# line later they arent still set from reading the previous record.
if($2==name){ foundName=1 } # If the current value of the Name: matches the target value stored in
# our "name" variable then set the flag to indicate that so when we test
# it on our UUID: line we know we found the target name.
next
}
/^Groups:/ && $2==group{ # If the current value of the Group: matches the target value stored in
foundGroup=1 # our "group" variable then set the flag to indicate that so when we test
# it on our UUID: line we know we found the target group.
next
}
/^UUID:/ && foundName && foundGroup{ # Were on the UUID: line from the input so if we had previously found
print # our target "name" and "group" as indicated by the 2 flags we set earlier
# then we output the current line which contains the UUID.
foundName=foundGroup="" # Clear foundName and foundGroup flags here to ensure that when we hit the UUID:
# line for the next record they arent still set from reading the current record
}'
关于awk - 如何使用 awk 提取特定 VM 和组的 UUID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68095851/
已关闭。这个问题是 off-topic 。目前不接受答案。 想要改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 已关闭11 年前。 Improve th
我是 Azure 平台的初学者。我在公司的 Azure 基础架构中遇到了虚拟机问题,在我从操作系统重新启动后,该虚拟机无法启动,我尝试了所有其他故障排除功能,但仍遇到以下问题: 重新部署选项。 我想确
我在 Mac 上使用 XAMPP-VM,我尝试使用 xampp 管理器上显示的地址通过 ssh 连接到 VM: 192.168.65.2 我意识到我不知道 VM 的 root 密码和任何 ssh-ke
我知道你可以在 Dalvik 的 VM 中运行几乎所有的 Java,而你可以在 Java 的 VM 中运行,但是限制不是很清楚。有没有人遇到任何主要的绊脚石?有什么大图书馆有问题吗?任何编译成 Jav
Azure VM 备份失败,出现错误 - GuestAgentSnapshotTaskStatusErrorAzure 备份服务无法与 VM 代理通信以触发快照(以进行备份),因为 VM 代理可能处于
我想知道当虚拟机停止时,虚拟机的软件成本部分是否收费。我想运行 Azure SQL VM Enterprise。 VM 每月的软件成本为“1,116 美元/月”。 如果我停止使用,我仍需支付该软件的费
有 2 台安装了 Proxmox (Proxmox-ve 4.2) 的物理服务器,每台都处理几个虚拟机和容器。这些服务器(几乎)完全隔离,它们之间没有集群/共享存储/附加存储等。 已在 proxmox
我想知道当虚拟机停止时,虚拟机的软件成本部分是否收费。我想运行 Azure SQL VM Enterprise。 VM 每月的软件成本为“1,116 美元/月”。 如果我停止使用,我仍需支付该软件的费
有 2 台安装了 Proxmox (Proxmox-ve 4.2) 的物理服务器,每台都处理几个虚拟机和容器。这些服务器(几乎)完全隔离,它们之间没有集群/共享存储/附加存储等。 已在 proxmox
Parrot Virtual Machine 有什么好处?对于最终用户(软件开发人员)? 例如,如果我可以直接针对 Perl 或 Python 进行编程,我为什么还要在 Parrot 下为它们编程呢?
例如,Python 和 Java 有一个 VM,而 C 和 Haskell 没有。 (如果我错了,请纠正我) 想了想线路两边都有哪些语言,找不到原因。 Java 在很多方面都是静态的,而 Haskel
我知道虚拟机镜像有两种类型:通用型和专用型。 如果操作系统已通用化/取消配置,则必须关闭虚拟机才能将其捕获为 VM 镜像。一旦 VM 被捕获为 VM 镜像,该虚拟机将自动删除。 如果操作系统是专用,则
我知道虚拟机镜像有两种类型:通用型和专用型。 如果操作系统已通用化/取消配置,则必须关闭虚拟机才能将其捕获为 VM 镜像。一旦 VM 被捕获为 VM 镜像,该虚拟机将自动删除。 如果操作系统是专用,则
背景信息 我正在开发一种支持网络的嵌入式设备,旨在与服务器进行通信。因为此服务器将运行 Linux(但我需要 Windows 工具进行开发),我正在运行带有 Ubuntu Server 14.04 的
我有一个 Azure 云服务 mywebapp.cloudapp.net,它由两个 Azure VM - mywebappvm1 和 mywebappvm2 组成。两个虚拟机位于同一可用性集中并具有相
有什么方法可以在不重新启动虚拟机的情况下调整现有虚拟机的大小,还是总是像停止虚拟机然后重新启动一样? 据我了解,我可以更改虚拟机的大小而无需重新启动它。请指导我,因为我不希望虚拟机在调整大小时出现任何
我是 Azure 新手。我正在尝试使用 powershell 在 Azure 中创建资源。 我的要求是从虚拟机创建镜像。我遵循了以下方法: 流程 1:手动执行 通用化虚拟机:登录虚拟机 -> 打开命令
我创建了虚拟网络,并且想要将新虚拟机部署到该虚拟网络。网络 我尝试使用以下命令创建虚拟机: az vm create --resource-group myGroup --name VMTestNet
上下文 作为一个大学项目,我们希望更改 pharo 虚拟机以使用对象表,看看会发生什么。 我们使用pharo-vm clone from github和VMMaker。构建虚拟机工作正常。 首先,我们
我是巴拿马型的新手,刚刚安装,但收到以下错误消息: A different VM with name panamax-vm has been created already. 我试图通过使用 pana
我是一名优秀的程序员,十分优秀!