wireshark抓包分析 wireshark是非常流行的网络封包分析软件,功能十分强大。可以抓取各种网络包,并显示网络包的详细信息。开始界面 wireshark是捕获机器上的某一块网卡的网络包,当你的机器上有多块网卡的时候,你需要选择一个网卡。点击Caputre->Interfaces.. 出现下面对话框,选择正确的网卡。然后点...
分类:
其他好文 时间:
2015-06-15 16:25:58
阅读次数:
134
In a similar way to other parts of a game, user interfaces usually go through several iterations until we get the user experience right; it is vital t...
分类:
Web程序 时间:
2015-06-15 12:40:49
阅读次数:
126
GPIO Interfaces
This provides an overview of GPIO access conventions on Linux.
These calls use the gpio_* naming prefix. No other calls should use that prefix, or the related __gpio_* prefix.
What is...
分类:
其他好文 时间:
2015-06-12 17:27:25
阅读次数:
118
sudo vim /etc/network/interfaces改为如下部分:auto eth0 #原来如果不是eth0而是lo什么的请保持iface eth0 inet static #eth0同上address 192.168.1.110gateway 192.168.1.1 #同本机网关net...
分类:
系统相关 时间:
2015-06-12 06:20:33
阅读次数:
144
设置IP
/etc/network/interfaces
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.100
network 192.168.1.0
ne...
分类:
系统相关 时间:
2015-06-10 17:24:02
阅读次数:
168
啊,最近懒惰了,好久没有写博客了。一般机器启动的时候会自动从DHCP服务器上面获取动态IP地址,这是一件很方便的事情,可以不用手动设置网络相关的蚕参数,但是有时候还是需要机器固定IP地址的。第一步,编辑/etc/network/interfaces,添加下面的内容auto eth0iface eth...
分类:
系统相关 时间:
2015-06-09 00:49:16
阅读次数:
311
【Server版本】在UbuntuServer版本中,因为只存有命令行模式,所以要想进行网络参数设置,只能通过修改/etc/network/interfaces。具体设置方法如下:(1) UbuntuServer修改 IP地址打开/etc/network/interfacessudo vim/etc...
分类:
Web程序 时间:
2015-06-08 16:54:00
阅读次数:
111
/**获取本机ip**/function getIPAdress(){ var interfaces = require('os').networkInterfaces(); for(var devName in interfaces){ var iface = interfaces[devName...
分类:
其他好文 时间:
2015-06-08 16:26:20
阅读次数:
135
今天在用VS2013自带的LocalDB调整数据库时出错,在网上也搜到许多方案,如卸载SQLServer LocalDB的程序、重新创建实例等都没有解决我的问题,也重新修改以及修复Vs,问题依旧存在,仔细思索研究后找到了解决方案:1.先贴问题(注:我这里是LocalDB V11.0不能使用):Mic...
分类:
数据库 时间:
2015-06-08 00:50:56
阅读次数:
1605
外观模式:
为子系统中的一系列接口提供了一个统一的界面。外观模式定义了一个高层次的接口以使子系统更加容易使用。Provide a unified interface to a set of interfaces in a subsystem.
Façade defines a higher-level interface that makes the subsystem easier to us...
分类:
其他好文 时间:
2015-06-06 12:10:53
阅读次数:
265