
linux
绿源2008
编程、设计 J2EE android IOS
展开
-
linux常用命令
linux 清理缓存 通过修改proc系统的drop_caches清理free的cache $echo 3 > /proc/sys/vm/drop_caches drop_caches的详细文档如下: Writing to this will cause the kernel to drop clean caches, dentries and inodes from memory,原创 2013-10-30 11:33:18 · 699 阅读 · 0 评论 -
jpcap安装与配置、数据包拦截
一.JPCAP简介 众所周知,Java语言虽然在TCP/UDP传输方面给予了良好的定义,但对于网络层以下的控制,却是无能为力的。JPCAP扩展包弥补了这一点。 JPCAP实际上并非一个真正去实现对数据链路层的控制,而是一个中间件,JPCAP调用wincap/libpcap,而给JAVA语言提供一个公共的接口,从而实现了平台无关性。在官方网站上声明,JPCAP支持FreeBSD转载 2016-05-12 12:38:25 · 3653 阅读 · 0 评论 -
linux 如何查看防火墙是否开启
service iptables status可以查看到iptables服务的当前状态。 但是即使服务运行了,防火墙也不一定起作用,你还得看防火墙规则的设置 iptables -L 在此说一下关于启动和关闭防火墙的命令: 1) 重启后生效 开启: chkconfig iptables on 关闭: chkconfig iptables off原创 2017-02-27 17:50:56 · 3894 阅读 · 0 评论