1.vnc proxy的实现原理vnc
是nova提供的用来访问虚拟机的一项重要功能,用户可以通过websocket来访问,也可以通过java客户端来访问。通过websket访问虚拟机
的功能已经集成到horizon中,而通过java客户端则需要先安装相应的软件。为了方便用户访问虚拟机,nova通过...
分类:
Web程序 时间:
2014-06-09 14:21:11
阅读次数:
415
【原题】
1822: [JSOI2010]Frozen Nova 冷冻波
Time Limit: 10 Sec Memory Limit: 64 MB
Submit: 796 Solved: 218
[Submit][Status]
Description
WJJ喜欢“魔兽争霸”这个游戏。在游戏中,巫妖是一种强大的英雄,它的技能Frozen Nova每次可以杀死一个小精...
分类:
Web程序 时间:
2014-06-05 10:05:02
阅读次数:
343
Then-queens puzzle is the problem of
placingnqueens on ann×nchessboard such that no two queens attack each
other.Given an integern, return all distinc...
分类:
其他好文 时间:
2014-06-04 20:00:47
阅读次数:
206
#include#include#include#define N 8int arr[N];void
queens(int *arr);int checkPosition(int *arr, int i);int main(){// 初始化数组 int i;
for(i = 0; i =...
分类:
其他好文 时间:
2014-06-04 17:29:19
阅读次数:
308
插件地址http://plugins.jetbrains.com/plugin/2170?pr=idea安装方法参考http://www.cnblogs.com/nova-/p/3535636.html安装完成后File>Settings>Jindent-Source
Code Formatter这...
分类:
编程语言 时间:
2014-06-02 20:52:22
阅读次数:
312
今天在维护服务器的时候,发现有5个nova-novncproxy的僵尸进程。26327 ? S
0:05 \_ /usr/bin/python /usr/bin/nova-novncproxy
--config-file=/etc/nova/nova.conf4765 ? Z 0:00 \_ [no...
分类:
系统相关 时间:
2014-06-02 15:38:10
阅读次数:
347
root@OpenstackIcehouse2:~# cat
/etc/nova/nova-compute.conf
[DEFAULT]compute_driver=libvirt.LibvirtDriver[libvirt]virt_type=qemulibvirt_inject_partitio...
分类:
其他好文 时间:
2014-06-02 10:23:16
阅读次数:
347
问题:
返回N皇后问题解的个数。
分析:
详见 N-queens
实现:
bool nextPermutation(vector &num)
{
int i = num.size() - 1;
while (i >= 1)
{
if(num[i] > num[i - 1])
{
--i;
int ii = num.size() - 1;
while (i...
分类:
其他好文 时间:
2014-06-01 18:24:45
阅读次数:
398
问题:
The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other.
Given an integer n, return all distinct solutions to the n-queens...
分类:
其他好文 时间:
2014-06-01 18:08:28
阅读次数:
334
作为个人学习笔记分享,有任何问题欢迎交流!
最近在Gerrit中看到一个change:https://review.openstack.org/#/c/94295/ , 它主要是对当前在Ceph中创建虚拟机的流程的改进。如果glance的backend是ceph, 则nova创建虚拟机到RBD的流程是这样的:
通过glance从ceph中下载image --> 本地 --> 复制image...
分类:
其他好文 时间:
2014-06-01 17:54:07
阅读次数:
438