SmartSniff:windows下的TCP/IP包捕获工具

Posted by 荒野无灯 @ 七月 17, 2010 at 12:07 上午 under 酷软分享   0 Comments   

SmartSniff is a network monitoring utility that allows you to capture TCP/IP packets that pass through your network adapter, and view the captured data as sequence of conversations between clients and servers. You can view the TCP/IP conversations in ... Continue Reading

CurrPorts:windows下查看网络连接端口的利器

Posted by 荒野无灯 @ 七月 17, 2010 at 12:03 上午 under 酷软分享   0 Comments   

http://www.nirsoft.net/utils/cports.html CurrPorts is network monitoring software that displays the list of all currently opened TCP/IP and UDP ports on your local computer. For each port in the list, information about the process that opened the port... Continue Reading

LNMP平台搭建与配置

Posted by 荒野无灯 @ 七月 16, 2010 at 12:46 上午 under ubuntu server   0 Comments   

1234567apt-get install mysql-server apt-get install php5 apt-get install php5-mcrypt apt-get install php5-mysql apt-get install  php5-xdebug apt-get install php5-cgi apt-get install nginx 12345678910root@hywd:/etc/nginx/sites-available# service n... Continue Reading

用NTP实现UBUNTU server的时间同步

Posted by 荒野无灯 @ 七月 15, 2010 at 11:56 下午 under ubuntu server   0 Comments   

创建文件: /etc/cron.daily/ntpdate 内容如下: 1ntpdate ntp.ubuntu.com 给/etc/cron.daily/ntpdate添加可执行权限: 1sudo chmod 755 /etc/cron.daily/ntpdate

... Continue Reading

ubuntu server的网络配置

Posted by 荒野无灯 @ 七月 15, 2010 at 10:53 下午 under ubuntu server   0 Comments   

首先,查看本服务器的都有哪些本地网卡接口: 1ifconfig -a | grep eth 另一个可以查看网卡接口信息的程序是lshw 1lshw -class network 以太网接口的逻辑名字(默认是eth0 , eth1 , eth2 ……): 该... Continue Reading

在Linux下列出指定目录下面的目录的方法

Posted by 荒野无灯 @ 七月 15, 2010 at 10:44 下午 under ubuntu技巧   0 Comments   

123ubuntu# find /etc/mysql -type d /etc/mysql /etc/mysql/conf.d 如果你还对以上命令的结果存有疑问的话,可以用以下命令确认一下他们真的是目录: 123ubuntu# ls -ld /etc/mysql /etc/mysql/conf.d drwxr-xr-x 3 root root 40... Continue Reading

列出UBUNTU linux下已经安装的软件包的方法

Posted by 荒野无灯 @ 七月 15, 2010 at 10:39 下午 under ubuntu技巧   0 Comments   

1,文件查看法 已安装包的状态信息保存在/var/lib/dpkg/status文件中 1cat /var/lib/dpkg/status | more 2,dpkg命令法 1dpkg -l | more

... Continue Reading

如何在ubuntu中启用SSH服务

Posted by 荒野无灯 @ 七月 15, 2010 at 9:09 下午 under ubuntu server   0 Comments   

一般是选择安装OpenSSH server 。 不废话,直接安装: 1sudo apt-get install openssh-server 查看SSH server正在工作与否: 12ubuntu$ ps -aef | grep sshd root     24114     1  0 15:18 ?       ... Continue Reading

免插件生成文章存档页面

Posted by 荒野无灯 @ 七月 10, 2010 at 11:18 下午 under wp技巧   28 Comments   

话说那天在此童鞋的博客留言本上看到有人问及他的“网站地图”功能是怎么实现D,偶看到此童鞋笑而不答。这引起了偶的注意,淫荡地笑了下,发现问题啦(底部的JS代码露出了马脚( 淫笑... Continue Reading

win主机下wordpress不支持中文标签的解决办法

Posted by 荒野无灯 @ 七月 10, 2010 at 9:40 下午 under wp问题   2 Comments   

今天WP中文论坛一网友问我win主机下wordpress不支持中文标签问题如何解决,GOOGLE之,解决办法如下: 修改wp-includes/rewrite.php 123456789101112131415161718    function get_tag_permastruct() { &n... Continue Reading