glance image-create --name cirros-0.3.4 --disk-format qcow2 --container-format bare --progress < cirros-0.3.4-x86_64-disk.img的意思
时间: 2024-06-01 07:09:51 浏览: 211
这是一个使用OpenStack Glance命令行工具创建镜像的命令,具体含义如下:
- `glance image-create`: 创建镜像的命令。
- `--name cirros-0.3.4`: 镜像的名称,这里设置为"cirros-0.3.4"。
- `--disk-format qcow2`: 镜像的磁盘格式,这里设置为"qcow2"。
- `--container-format bare`: 镜像的容器格式,这里设置为"bare"。
- `--progress`: 显示上传镜像的进度条。
- `< cirros-0.3.4-x86_64-disk.img`: 镜像文件的路径,这里使用的是本地路径,表示要上传的镜像文件是"cirros-0.3.4-x86_64-disk.img"。
相关问题
在OpenStack平台的admin项目中使用cirros-0.3.4-x86_64-disk.img镜像文件创建名为glance-cirros的镜像,通过OpenStack命令将glance-cirros镜像指定demo项目进行共享使用
1. 将cirros-0.3.4-x86_64-disk.img镜像文件上传到OpenStack平台中的glance镜像服务中。
```
$ openstack image create --file cirros-0.3.4-x86_64-disk.img --disk-format qcow2 --container-format bare --public glance-cirros
```
2. 将glance-cirros镜像共享给demo项目。
```
$ openstack image set --property visibility=shared glance-cirros
$ openstack image add project demo glance-cirros
```
现在,demo项目就可以使用glance-cirros镜像了。
在OpenStack平台的admin项目中使用cirros-0.3.4-x86_64-disk.img镜像文件创建名为glance-cirros的镜像
1. 首先,需要登录到OpenStack平台的admin项目中的控制节点,并打开终端。
2. 使用以下命令下载cirros-0.3.4-x86_64-disk.img镜像文件:
```
wget http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img
```
3. 确保镜像文件已下载到本地计算机中。
4. 使用以下命令在OpenStack平台中创建名为glance-cirros的镜像:
```
openstack image create --disk-format qcow2 --container-format bare --public --file cirros-0.3.4-x86_64-disk.img glance-cirros
```
5. 等待镜像创建完成。
6. 镜像创建完成后,可以使用以下命令查看已创建的镜像列表:
```
openstack image list
```
7. 镜像列表中应该会显示名为glance-cirros的镜像。
阅读全文