Home > php教程 > php手册 > body text

openstack qcow2 镜像文件制作

WBOY
Release: 2016-06-13 08:52:08
Original
1327 people have browsed it

openstack qcow2 镜像文件制作

一: Linux 镜像文件生成

A. 桥接网络设备脚本
[root@app10-051 ~]# cat /etc/qemu-ifup
#!/bin/bash
# 桥接网络设备
switch=br0
if [ -n $1 ];then
ip link set $1 up
brctl addif ${switch} $1
exit 0
else
echo "no interface!"
exit 1
fi
创建qcow2文件
qemu-img create -f qcow2 centos_6.5.qcow2 20G

制作linux镜像
/usr/libexec/qemu-kvm -m 1024 -cdrom iso/CentOS-6.5-x86_64-minimal.iso -drive file=centos6.5-30G.qcow2,if=virtio -net nic,model=virtio -net tap,script=no -boot d -nographic -vnc :0

启动已制作的linux镜像
/usr/libexec/qemu-kvm -m 4096 -drive file=CentOS6.5-x86_64-30G.qcow2,if=virtio -net nic,model=virtio -net tap -nographic -vnc :0

二:制作windows镜像

/usr/libexec/qemu-kvm -m 2048 -cdrom iso/cn_windows_7_ultimate_x64_dvd_x15-66043.iso \
-drive file=virtio-win-0.1-74.iso,media=cdrom -drive file=win7.qcow2,if=virtio \
-net nic,model=e1000 -net tap,ifname=tap2,script=no -boot d -nographic -vnc :2





Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!