摘要: 一、克隆虚拟机 二、从iso创建虚拟机 更多列子请参考: https://imcat.in/kvm-virt-install-to-install-various-system-configurations/ https://raymii.org/s/articles/virt-install_in 阅读全文
posted @ 2016-05-25 13:38 萧何9527 阅读(612) 评论(0) 推荐(0) 编辑
摘要: 转一篇好手顺! 原文地址:http://silverskysoft.com/open-stack-xwrpr/2015/07/enable-spice-html5-console-access-in-openstack-kilo/ 原文: Spice Console Access to Instan 阅读全文
posted @ 2016-02-25 14:20 萧何9527 阅读(1090) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.linuxquestions.org/questions/linux-virtualization-and-cloud-90/view-dynamic-ip-address-allocation-with-virsh-4175482470/ #!/bin/bash -x 阅读全文
posted @ 2016-02-18 11:37 萧何9527 阅读(2191) 评论(0) 推荐(0) 编辑
摘要: 最近项目上调查printf语句不能正常格式化字符串的问题,做下总结。以sprintf_s函数来说明问题的现象。int sprintf_s( char *buffer, size_t sizeOfBuffer, const char *format [, argument] ..... 阅读全文
posted @ 2015-07-17 18:26 萧何9527 阅读(488) 评论(0) 推荐(0) 编辑
摘要: git教程http://www.liaoxuefeng.com/提交到githubhttp://michaelye1988.iteye.com/blog/1637951 阅读全文
posted @ 2015-06-30 14:40 萧何9527 阅读(169) 评论(0) 推荐(0) 编辑
摘要: http://push.baidu.com/doc/java/api注意通知消息有固定的格式要求http://push.baidu.com/doc/restapi/msg_struct 阅读全文
posted @ 2015-06-06 10:07 萧何9527 阅读(174) 评论(0) 推荐(0) 编辑
摘要: MC支持本地化。参考资料http://blog.csdn.net/seastars_sh/article/details/8228646http://blog.chinaunix.net/uid-7667983-id-2046541.html 阅读全文
posted @ 2015-06-06 10:05 萧何9527 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 原文链接http://www.mzwu.com/article.asp?id=3509 阅读全文
posted @ 2015-06-06 10:04 萧何9527 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 【useage】chcp nnn其中nnn是3为数字,代表字符集编号。常用编号如下: 1258 越南语 1257 波罗的语 1256 阿拉伯语 1255 希伯来语 1254 土耳其语 1253 希腊语 1252 拉丁 1 字符 (ANSI) 1251 西里尔语 1250 中欧语言 950 繁体中文 949 朝鲜语 936 简体中文 932 日语 874 泰国语 850 多语种 (MS-DOS Latin1) 437 MS-DOS 美国英语 阅读全文
posted @ 2011-12-29 16:25 萧何9527 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1 cmd1 && cmd2 && cmd3 .....&& cmdn 具有预防错误的功能:cmdi只有在cmdi-1执行成功的情况下,才会被执行。2 cmd1 ; cmd2 ; cmd3 .......... ; cmdn 各命令依次执行,不管出现什么情况,每条命令都会被执行。3 cmd1 || cmd2 || cmd3 || ........|| cmdn 与&&的功能相反,如果cmdi执行成功,则之后的cmd都不会被执行。也就是说只有一条命令会被执行。4 cmd1 | xargs cmd2 将前一条命令的输出作为参数给后一条 阅读全文
posted @ 2011-11-25 11:08 萧何9527 阅读(728) 评论(0) 推荐(1) 编辑