To be a better coder
发布时间:2020-02-22 15:11:02
#include <stdio.h>#include <string.h>#include <time.h>int main(int argc,char **argv){ time_t time_now; struct tm *curr_time = NULL; time(&time_now); printf("time_now:[%ld]\n",time_now); curr_time = g.........【阅读全文】
发布时间:2017-11-28 11:29:24
普通虚拟化:半虚拟化virtiovhost:转载自:http://blog.csdn.net/hejin_some/article/details/72179525刘年超 : http://www.trustcomputing.com.cn/bbs/redirect.php?tid=980&goto=lastpost......【阅读全文】
发布时间:2017-09-21 10:34:46
(1)checking libxml2 xml2-config >= 2.6.0 ... configure: error: Could not find libxml2 anywhere (see config.log for details).#apt-cache search libxml2# apt-get install libxml++2.6-2# apt-get install libxml++2.6-dev(2) configure: error: You must install the GnuT.........【阅读全文】
发布时间:2018-11-07 14:17:06
3 使用 libvirt 编程来管理 KVM 虚机的实例 这里只描述基本的过程。具体的过程,下一篇文章会具体分析 Nova 中 libvirt 的使用。定义虚机的基本配置,包括 vCPU、内存、磁盘或者cdrom以及启动顺序,生成 xml 配置,调用 virDomainCreateXML API 启动一个虚机使用 Domain 相关的 API 来管理虚.........【阅读全文】