add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

28
pages.zh/linux/nova.md Normal file
View File

@@ -0,0 +1,28 @@
# nova
> OpenStack 项目,提供了一种配置计算实例的方法。
> 更多信息:<https://docs.openstack.org/nova/latest/>.
- 列出当前租户的虚拟机:
`nova list`
- 列出所有租户的虚拟机(仅限管理员用户):
`nova list --all-tenants`
- 在特定主机上启动虚拟机:
`nova boot --nic net-id={{net_id}} --image {{image_id}} --flavor {{flavor}} --availability-zone nova:{{host_name}} {{vm_name}}`
- 启动服务器:
`nova start {{server}}`
- 停止服务器:
`nova stop {{server}}`
- 将网络接口附加到特定虚拟机:
`nova interface-attach --net-id {{net_id}} {{server}}`