发布时间:2016-11-20 10:39:47
1, 查看无线网卡的芯片型号如果是usb网卡, 用lsusb(属于usbutils的命令), 查看无线网卡的型号:#[root@localhost wireless]# lsusbBus 001 Device 002: ID 148f:7601 Ralink Technology, Corp. MT7601U Wireless Adapter如果是内置网卡,或pci网卡:#[root@localhost wireless]# lspci04:00.0 Network con.........【阅读全文】
发布时间:2016-11-16 16:55:29
1, vsftpd配置文件 #cat /usr/local/etc/vsftpd.conf# Example config file /etc/vsftpd.conf## The default compiled in settings are fairly paranoid. This sample file# loosens things up a bit, to make the ftp daemon more usable.# Please see vsftpd.conf.5 for all compiled in defaults.## REA.........【阅读全文】
发布时间:2016-11-01 16:15:18
转载自: http://hzdiy.iteye.com/blog/7781942.IOCP发送大数量的问题 有A,B两块数据,如AB两块数据,如果A数据比较大,异步只发送了一部分就返回了,B数据已经提交,?这时候再发A剩下的部分就乱顺序了 ,该如何处理。 所有重叠操作可确保按照应用程序投递的顺序执行. 然而, 不能确保从完.........【阅读全文】
发布时间:2016-10-21 16:20:27
tcpdump抓包:tcpdump -i eth0 -s 0 -w output.file 'src host 192.168.100.8 port 8089' -i eth0: 是将要抓包的网卡-s 0 : 表示包的长度不受限制, 这也是用wireshark分析的关键-w output.file: 将tcpdump的内容保存下来'src host 192.168.100.8 port 8089': 这是一个过滤语句, 表示只要来自.........【阅读全文】
发布时间:2016-08-31 09:37:14
meld是一款在linux非常好用的代码合并工具, 安装:#sudo apt-get install meld使用:#meld......【阅读全文】