摘要:
1、查看虚拟机模板 openstack flavor list 2、将qcow2格式的镜像转换为raw格式的 qemu-img convert -f qcow2 -O raw Windows10.qcow2 Windows10.raw 3、上传镜像模板 glance image-create --n 阅读全文
摘要:
nohup /opt/test/xunhaun.sh &> run.log & 脚本内容 [root@node1 /opt/test]# cat xunhaun.sh #!/bin/bash a=0 while true;do echo $a sleep 1 let a++ done 阅读全文