码迷,mamicode.com
首页 > 其他好文 > 详细

修改kvm虚拟机镜像大小

时间:2018-03-21 18:27:40      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:body   文件   kvm   res   信息   img   log   disk   bytes   

修改虚拟机镜像大小(qcow2/raw resize)

创建一个镜像文件,大小1G  

taw

muxueqz@muxueqz /tmp $ qemu-img create -f raw t.raw 1G  
Formatting t.raw, fmt=raw size=1073741824  
muxueqz@muxueqz /tmp $ qemu-img info t.raw  
image: t.raw  
file format: raw  
virtual size: 1.0G (1073741824 bytes)  
disk size: 1.0M  

qcow2

muxueqz@muxueqz /tmp $ qemu-img create -f qcow2 t.qcow2 1G  
Formatting t.qcow2, fmt=qcow2 size=1073741824 encryption=off cluster_size=0  

 

查看镜像文件实际占用空间

muxueqz@muxueqz /tmp $ ls -alh t.qcow2  
-rw-r--r-- 1 muxueqz muxueqz 193K 8月 31 13:18 t.qcow2  

查看qcow2信息

muxueqz@muxueqz /tmp $ qemu-img info t.qcow2  
image: t.qcow2  
file format: qcow2  
virtual size: 1.0G (1073741824 bytes)  
disk size: 136K  
cluster_size: 65536  

 

加1G(resize +)

 

muxueqz@muxueqz /tmp $ qemu-img resize t.qcow2 +1G  
Image resized.  

 

修改kvm虚拟机镜像大小

标签:body   文件   kvm   res   信息   img   log   disk   bytes   

原文地址:https://www.cnblogs.com/yangjig/p/8618520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!