码迷,mamicode.com
首页 >  
搜索关键字:cant find keyplane    ( 24282个结果
makefile 中定义宏位置需要注意一下
1 CUR_DIR = $(shell pwd) 2 3 CFLAGS = -g -Wall 4 GCC = gcc 5 GXX = g++ 6 7 TARGET = exe.out 8 9 SRC_FILES += $(shell find $(CUR_DIR) -name *.cc) \...
分类:其他好文   时间:2014-07-12 00:57:34    阅读次数:216
关于driver_register做了些什么
现在进入driver_register()函数去看看。在driver_register() 中,调用了driver_find(drv->name, drv->bus)函数,这里是干啥呢?这里是先去驱动打算挂牌的地方先查找一下,这个驱动是否已经挂牌(注册)过了。在哪里查找呢?代码中写得很清楚,去bus...
分类:其他好文   时间:2014-07-12 00:51:02    阅读次数:219
Wireshark(二):应用Wireshark观察基本网络协议
原文出处: EMC中文支持论坛TCP:TCP/IP通过三次握手建立一个连接。这一过程中的三种报文是:SYN,SYN/ACK,ACK。第一步是找到PC发送到网络服务器的第一个SYN报文,这标识了TCP三次握手的开始。如果你找不到第一个SYN报文,选择Edit -> Find Packet菜单选项。选择...
分类:其他好文   时间:2014-07-11 23:23:32    阅读次数:382
Searching in a rotated and sorted array
Given a sorted array that has been rotated serveral times. Write code to find an element in this array. You may assume that the array was originally s...
分类:其他好文   时间:2014-07-11 23:02:53    阅读次数:254
find pattern
daniel@daniel-mint ~/msf/metasploit-framework/tools $ ruby pattern_create.rb 2000Aa0Aa1Aa2Aa3Aa4Aa5Aa6Aa7Aa8Aa9Ab0Ab1Ab2Ab3Ab4Ab5Ab6Ab7Ab8Ab9Ac0Ac1Ac2...
分类:其他好文   时间:2014-07-11 12:41:00    阅读次数:1179
基于VMware的eCos环境编译redboot(脚本配置redboot)
基于VMware的ecos,redboot及hello world(1)安装请参照[【ecos学习2】wmware运行redboot[方法二]--图形实现配置 ](2)修改内存布局文件:~/i386/ecos-3.0$ find . -name "mlt_i386_pc_floppy.ldi"./p...
分类:数据库   时间:2014-07-11 12:31:34    阅读次数:370
根据读取日志 移动文件
#coding=utf-8import osimport shutilfobj = open('F:/v3/k.txt','r')line = fobj.readline()while line: if line.find('a') >=0 : line = line.str...
分类:移动开发   时间:2014-07-11 11:50:20    阅读次数:192
并查集类的c++封装,比較union_find algorithm四种实现方法之间的性能区别
问题描写叙述:在计算机科学中,并查集是一种树型的数据结构,其保持着用于处理一些不相交集合(Disjoint Sets)的合并及查询问题。有一个联合-查找算法(union-find algorithm)定义了两个操作用于此数据结构:Find:确定元素属于哪一个子集。它能够被用来确定两个元素是否属于同一...
分类:编程语言   时间:2014-07-10 14:40:47    阅读次数:250
Ceph安装QEMU报错:User requested feature rados block device configure was not able to find it
CentOS6.3中,要想使用Ceph的blockdevice,需要安装更高版本的QEMU。安装好ceph后,安装qemu-1.5.2#tar-xjvfqemu-1.5.2.tar.bz2#cdqemu-1.5.2#./configure--enable-rbd一定要加上--enable-rbd选项,这样qemu才能支持rbd协议。这一步可能会报错:ERROR:Userrequestedfeaturerado..
分类:其他好文   时间:2014-07-09 08:41:34    阅读次数:477
Linux一次性修改电脑的文件的为读写格式
第一步:编辑一下文本,大家可以对脚本按照自己的要求更改:#!/bin/bash#chmod alltextfiletoreadandwrite;find ~-name"*.doc*"-execchmod644-R{}\;find ~-name"*.xls*"-execchmod644-R{}\;find ~-name"*.ppt*"-execchmod644-R{}\;find ~-name"*.pdf"-execchmod644-R{}\;find ~-..
分类:系统相关   时间:2014-07-09 08:00:13    阅读次数:259
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!