11 2011 档案

Ubuntu 安装 ARP 防火墙
摘要:.....1 sudo apt-get install firestarter2 sudo firestarter 阅读全文

posted @ 2011-11-28 17:41 0xCAFEBABE 阅读(788) 评论(0) 推荐(0) 编辑

Ubuntu 下监控进程网络流量
摘要:.....在网上找了一个监控网络流量的程序,具体使用方法还在测试中,先把安装的方式记录下来备查。1 sudo apt-get install iptraf2 sudo iptraf如果报如下错误:1 This program requires a screen size of at least 80 columns by 24 lines2 Please resize your window那么只要按 F11 将终端切换到全屏模式再运行该程序即可。根菜单中文翻译:View Code 1 IP traffic monitor IP流量监视器 2 3 General interface sta.. 阅读全文

posted @ 2011-11-28 17:08 0xCAFEBABE 阅读(2682) 评论(0) 推荐(0) 编辑

C# 用字符串作为变量名
摘要:....如果使用string变量中的字符串作为另一个变量的名字,需要通过反射取得字符串对象,可以通过如下方式实现:View Code 1 BindingFlags bf = BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Static;2 Type type = this.GetType();3 FieldInfo fi = type.GetField("变量名的字符串", bf);4 string sql = fi.GetValue(this).ToString();也可以写成另外一种形式:Vie 阅读全文

posted @ 2011-11-04 18:12 0xCAFEBABE 阅读(3400) 评论(0) 推荐(0) 编辑

导航