摘要: 参照官方install document: http://docs.openstack.org/liberty/install-guide-rdo/ 实验环境:centos7.2 桥接: 192.168.1.71 主机名:computer computer节点 nat:桥接:192.168.1.72 阅读全文
posted @ 2016-09-11 17:32 xuanhui 阅读(958) 评论(0) 推荐(0)
摘要: 下面图片多来自互联网。 云计算: 云计算层次机构模型: IaaS 基础设施服务 PaaS 平台级服务 SaaS 软件级服务 官网:http://www.openstack.org/ openstack是实现云计算的一个项目,使用python语言开发。 三个基础组件:计算服务、网络服务、存储服务 Op 阅读全文
posted @ 2016-09-11 16:16 xuanhui 阅读(3177) 评论(0) 推荐(0)
摘要: Kvm快照: 1、基于lvm的快照 2、kvm自带的快照功能(需要qcow2 磁盘文件才支持快照) 关闭kvm虚拟机: 查看磁盘文件信息: [root@super67 ~]# qemu-img info /var/lib/libvirt/images/ubuntu16-1.img image: /v 阅读全文
posted @ 2016-09-11 08:57 xuanhui 阅读(264) 评论(0) 推荐(0)
摘要: 打开文件方法: with open (r"E:\a.txt",'r+') as fd: for line in fd: print(line) f = open(r'E:\a.txt',"r+") f.read() f.readline() #str f.readlines() #list 。 re 阅读全文
posted @ 2016-09-11 00:29 xuanhui 阅读(133) 评论(0) 推荐(0)