搜索
查看
编辑修改
首页
UNITY
NODEJS
PYTHON
AI
GIT
PHP
GO
CEF3
JAVA
HTML
CSS
搜索
weixin_40725706
这个屌丝很懒,什么也没留下!
关注作者
热门标签
jquery
HTML
CSS
PHP
ASP
PYTHON
GO
AI
C
C++
C#
PHOTOSHOP
UNITY
iOS
android
vue
xml
爬虫
SEO
LINUX
WINDOWS
JAVA
MFC
CEF3
CAD
NODEJS
GIT
Pyppeteer
article
热门文章
1
浅析EL表达式注入漏洞
2
深度学习yolov5网络结构详解
3
crt linux 图形化界面,利用Xming和secureCRT访问linux图形程序在windows上 Xwindows
4
MySQL面试系列-03_自增主键会产生表锁
5
ArcGIS Pro 2.7编辑倾斜摄影模型_arcgispro倾斜模型切片
6
计算机毕业设计springboot+vue基本微信小程序的健康管理系统_springboot+vue +vuecli后台管理系统
7
tensorflow 搭建神经网络框架_activation='relu',kernel_initializer=tf.truncated_
8
java 搭建基于springboot的ssh(spring + springmvc + hibernate)的gradle项目(添加多Module篇)_springboot如何添加以前的ssh项目
9
大众点评内容搜索算法优化的探索与实践
10
CentOS7.9 设置禁PING_centos 配置防火墙或过滤路由器以阻止传出的icmp数据包
当前位置:
article
> 正文
glance相关命令_glance image-download
作者:weixin_40725706 | 2024-03-25 04:22:04
赞
踩
glance image-download
------------------------
glance相关命令:
----------------------
glance help| grep image
1. 创建镜像
glance image-create --name centos5.8_x86_64 --disk-format=qcow2 --container-format=bare --is-public=True --file=/tmp/centos5.8_x86_64_growroot_1.2_20131231.qcow2
2. 上传image
glance add name="Ubuntu 12.04 cloudimg amd64" is_public=true container_format=ovf disk_format=qcow2 < /root/precise-server-cloudimg-amd64-disk1.img
3. 列出当前可用镜像
glance image-list
4.列出镜像的详细信息
glance image-show 0c47db9c-5f74-4544-8ada-0894c1d2c20c
5. 删除镜像
nova image-delete cirros
6.设置镜像参数
openstack image set --property hw_cpu_cores=8 --property hw_cpu_threads=2 --property hw_cpu_sockets=2 --property hw_disk_bus=ide 0215d732-7da9-444e-a7b5-798d38c769b5
如果不能正常启动可以设置--property hw_disk_bus=ide 参数试一试
7. 把快照转为镜像的命令如下:
镜像默认存放于控制节点 /var/lib/glance/images/228f7bdc-fcf1-4f6a-8a7a-298b86f9e94b。(根据自己的环境有所不同)
先进入上述目录
glance image-create --name "CentOS 6.7" --file 228f7bdc-fcf1-4f6a-8a7a-298b86f9e94b --disk-format qcow2 --container-format bare --visibility public --progress
glance image-create --name "cirros-raw" --file cirros-0.3.3-x86_64-disk.img --disk-format raw --container-format bare --visibility public --progress
7. 镜像下载命令
glance image-download --file /root/centos7-2.qcow2 c71568de-e37f-49cb-8ab4-01bd0cbbded8
8. 解决windows时间不同步的问题。
glance image-update --property os_type="windows" <IMAGE-ID>
9. 如果是vmware的虚拟机文件
A 如果是单个vmdk文件可以采用如下的步骤:
qemu-img convert -O qcow2 Kali-Linux-2.0.0-vm-amd64-disk1.vmdk kali.qcow2 -o compat=0.10
glance image-create --name kali --disk-format=qcow2 --container-format=bare --visibility public --file=kali.qcow2
生成镜像后,再生成虚拟机
B 如果是OVA文件可以先用命令
tar -xvf VS7000_VM_04.01.03.ova 出现vmdk文件
再使用上述的命令,如果出现不能启动的情况,可以入如下的参数:--property hw_disk_bus=ide
glance image-create --name kali2018-2new --disk-format=qcow2 --container-format=bare --visibility public --property hw_disk_bus=ide --file=kali.qcow2
如果是多个虚拟机文件如 OWASP Broken Web Apps-s001.vmdk OWASP Broken Web Apps-s002.vmdk ......可以先用vmware workstation软件导出为OVF文件。
如果菜单出现不能导出,编辑要导出的虚拟机或者升级虚拟机进行调整即可。
导出OVF文件的目录有vmdk文件,按照上面的命令进行操作即可
声明:
本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:
https://www.wpsshop.cn/w/weixin_40725706/article/detail/306915
推荐阅读
article
【HarmonyOS】ArkUI -
Image
、
Text
、
Text
Input、
Button
、Sli...
ArkUI 基础组件用法,resources资源访问_
harmonyos
textinput backgroundima...
赞
踩
article
鸿蒙Harmony(六)ArkUI---基础组件:
Image
、
Text
、
Text
Input、Butt...
【代码】鸿蒙Harmony(六)ArkUI---基础组件:
Image
、
Text
、
Text
Input、
Button
、Sli...
赞
踩
article
解决运行Unable to
find
image
‘
hello
-
world
:
latest
‘ loca...
参考这位博主的没作用。_unable to
find
image
'
hello
-
world
:
latest
' locall...
赞
踩
article
阿里云
linux
环境安装
Docker
(期间问题记录:执行到 “测试是否成功安装”,提示
Unable
...
记录下第一次在
linux
环境安装
Docker
_
unable
to
find
image
'
hello
-
world
:
lat...
赞
踩
article
解决安装
docker
之后,测试
hello
world
镜像,终端提示
Unable
to
find
ima...
解决安装
docker
之后,测试
hello
-
world
镜像,终端提示:
Unable
to
find
image
'hell...
赞
踩
article
Unable to
find
image
‘
hello
-
world
:
latest
‘
locally
,...
Unable to
find
image
‘
hello
-
world
:
latest
‘
locally
跑不起来参考处理E21...
赞
踩
article
docker
安装完成后测试
hello
-
world
出现问题(Unable to
find
image
...
安装
docker
之后,测试
hello
-
world
镜像,终端卡在Unable to
find
image
'
hello
-w...
赞
踩
article
[2021] 完美解决Unable
to
find
image
‘
hello
-
world
:lates...
安装Docker出现的问题相信大家查询了很多的回答里面都是需要修改阿里镜像源,但是修改之后却无用。这是因为阿里那个源对于...
赞
踩
article
docker
run
hello
-
world
报错:Unable to
find
image
‘hel...
Unable to
find
image
'
hello
-
world
:
latest
' locally
docker
: Err...
赞
踩
article
img
_
gray
=
cv2
.cvtColor(
img
,
cv2
.COLOR_
BGR2GRAY
) c...
@解决
img
_
gray
=
cv2
.cvtColor(
img
,
cv2
.COLOR_
BGR2GRAY
)
cv2
.erro...
赞
踩
article
ICCV2019
oral
papers_
privacy
preserving
image
quer...
ICCV2019
oral
papersExploring Randomly Wired Neural Networks...
赞
踩
article
What
's new
in
image
denois
in
g -
图像去噪
进展_
图像去噪
数据
集...
What
‘s new
in
image
denois
in
g最近看了不少论文,闲下来对这些文章做一个总结,把握一下这个领域...
赞
踩
article
OSError
:
image
file
is
truncated
(4
bytes
not proc...
项目场景:labeme打开图像报
OSError
:
image
file
is
truncated
(4
bytes
no...
赞
踩
article
【自学
Docker
】
Docker
inspect
命令_
docker
image
inspect
|...
使用
docker
inspect
image
命令,可以获取
Docker
镜像的相关信息,使用
docker
insp...
赞
踩
article
ArtFlow
:
Unbiased
Image
Style
Transfer
via Reversi...
Jie An, Siyu Huang等:CVPR 2021:罗切斯特大学、百度研究院、腾讯AI实验室、腾讯数据平台。_a...
赞
踩
article
可逆网络风格迁移-解决内容泄漏问题 [
CVPR
2021]
ArtFlow
:
Unbiased
Im...
ArtFlow
:
Unbiased
Image
Style
Transfer
via
Reversible
Neural
...
赞
踩
article
【
OpenStack
(Train版)安装部署(三)】之
Glance
服务环境部署_修改
glance
配置...
文章目录本文章由公号【开发小鸽】发布!欢迎关注!!!(一)
Glance
服务部署1.创建数据库并授权2.
glance
关于k...
赞
踩
article
OpenStack
使用
glance
命令创建
镜像
_
glance
image
-
create
...
OpenStack
使用
glance
命令创建
镜像
本文主要介绍如何使用
glance
命令上传
镜像
1.选项Optional ar...
赞
踩
article
glance
image
-
create
上传
镜像
失败,报
Error
finding address f...
【背景】最近在我们的openstack-T环境,后台使用
glance
image
-
create
命令上传虚拟机系统
镜像
时失...
赞
踩
article
openstack
glance
运维_
glance
命令...
查看
glance
镜像列表查看创建的镜像具体信息需要通过
glance
image-show +镜像id查看如果 需要更改镜...
赞
踩
相关标签
鸿蒙
harmonyos
鸿蒙系统
arkts
arkui
华为
ubuntu
docker
运维
容器
linux
经验分享
阿里云
opencv
人脸识别
计算机视觉
机器学习
深度学习
神经网络
图像去噪