摘要:
http://www.jb51.net/article/45848.htm 创建用户 阅读全文
摘要:
http://www.cnblogs.com/arrongao/archive/2013/03/30/linux_svn.html 阅读全文
摘要:
1 temp=`dpkg -l | grep "openssl"2 if [ -n "$temp" ];then3 echo "openssl已经安装"4 elif [ -z "$temp" ];then5 echo "openssl未安装"6 fi1. rpm包安装的 rpm -qa | grep "软件包名称“2.deb包安装的 dpkg -l | grep "软件包名称"3.yum安装的 yum list installed | grep "软件包名 阅读全文
摘要:
今天看tomcat 源码的时候看见websocket了,之前在php弄websocket的时候也研究了一下,不过它的frame一看是字节与过来与过去直接就无视了,今天又重新研究了一下。websocket 的协议在RFC6455中 http://tools.ietf.org/html/rfc6455#section-5.1 帧格式为: 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 ... 阅读全文