摘要: 1、查看虚拟机模板 openstack flavor list 2、将qcow2格式的镜像转换为raw格式的 qemu-img convert -f qcow2 -O raw Windows10.qcow2 Windows10.raw 3、上传镜像模板 glance image-create --n 阅读全文
posted @ 2021-10-22 15:25 Gshelldon 阅读(1627) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2021-10-22 15:19 Gshelldon 阅读(337) 评论(2) 推荐(0) 编辑