网络嗅探每张网卡都有自己全球唯一的地址(MAC地址,12字节),正常情况下网卡只接收发送给自己的数据包(数据包前12字节就是数据包的目标MAC地址),及广播地址(MAC地址为12个F)。混杂模式(Promiscuous mode)就是将网卡接收到所有的数据全部发送给系统。而无线网卡的嗅探原理:无线网...
分类:
其他好文 时间:
2014-08-08 17:50:06
阅读次数:
288
Description
Given a list of phone numbers, determine if it is consistent in the sense that no number is the prefix of another. Let’s say the phone catalogue listed these numbers:
1. Emergency 911
...
分类:
其他好文 时间:
2014-08-08 12:49:16
阅读次数:
187
1. DES算法简介
DES算法全称为Data Encryption Standard,即数据加密算法,它是IBM公司于1975年研究成功并公开发表的。DES算法的入口参数有三个:Key、Data、Mode。其中Key为8个字节共64位,是DES算法的工作密钥;Data也为8个字节64位,是要被加密或被解密的数据;Mode为DES的工作方式,有两种:加密或解密。...
分类:
其他好文 时间:
2014-08-07 23:22:36
阅读次数:
387
在Ubuntu中经常需要修改某些文件,这里对vi中的一些常用操作作一下总结。1、进入vi命令 vi filename: 打开或新建文件,并将光标置于第一行首 进入文件后,处于命令行模式(command mode)2、切换为命令行模式 按 ESC 键3、插入模式(Insert mode) ...
分类:
其他好文 时间:
2014-08-07 22:57:54
阅读次数:
221
找出循环周期就行了
#include
using namespace std;
int N,M,X;
int time(int x,int y,int z)
{
if(z!=0&&x==1)
return z;
if(x%2==0)
x/=2;
else
x=(x+y+1)/2;
return time(x,y,z+...
分类:
其他好文 时间:
2014-08-07 15:53:50
阅读次数:
284
PLL共有四种工作模式,只有理解了这四种工作模式的特点,才能在设计中选用恰当的模式,完成自己设计的预期功能。这四种工作模式分别是普通模式(Normal Mode)、零延迟缓冲模式(Zero Delay Buffer Mode)、非补偿模式(No Compensation Mode)、源同步模式(So...
分类:
其他好文 时间:
2014-08-07 15:39:00
阅读次数:
292
如果uwsgi错误中提示
*** no app loaded. going in full dynamic mode ***
执行
[plain] view
plaincopy
aptitude install uwsgi-plugin-python
之后重启uwsgi...
分类:
其他好文 时间:
2014-08-07 13:16:10
阅读次数:
185
A system switches between non-secure and secure modes by making processes, applications, and data for the non-secure mode unavailable to the secure mo...
分类:
其他好文 时间:
2014-08-07 12:55:00
阅读次数:
318
RHEL6.5---查看服务器的内存:[root@linuxcast/]#free-mtotalusedfreesharedbufferscachedMem:1870179476062862-/+buffers/cache:8681001Swap:409504095---查看服务器cpu信息[root@linuxcast/]#lscpuArchitecture:x86_64CPUop-mode(s):32-bit,64-bitByteOrder:LittleEndianCPU(..
分类:
Web程序 时间:
2014-08-07 07:31:30
阅读次数:
263
3.Your database is in ARCHIVELOG mode. You have two online redo log groups, each of which contains one redo member. When you attempt to start the data...
分类:
其他好文 时间:
2014-08-06 21:48:22
阅读次数:
610