摘要: 无粘贴功能的主要原因是无权限复制,所以解决方案是: 打开终端,输入:sudo nautilus 那么就会打开一个有管理员权限的文件夹资源器,现在右键就有粘贴功能了。 阅读全文
posted @ 2019-01-10 11:09 sunshineflt 阅读(2630) 评论(0) 推荐(0) 编辑
摘要: 今天开着source insight撸代码,看到一段云里雾里的脚本,百度下,看到个博客,巴拉巴拉讲了一堆原理,最后来一句: Talk is cheap,show me the code! 突然就被这句话戳心,mark一下 阅读全文
posted @ 2019-01-04 10:26 sunshineflt 阅读(1370) 评论(0) 推荐(0) 编辑
摘要: MPTCP采用的是双层序列号(更多详细介绍可阅:https://www.cnblogs.com/DesperateCupid/p/7898795.html) 从图中可知道这两层序号的名字是data sequence number和subflow sequence number,所以对应的,在wire 阅读全文
posted @ 2018-12-04 20:17 sunshineflt 阅读(623) 评论(0) 推荐(0) 编辑
摘要: 如题:tcp.window_size_value 阅读全文
posted @ 2018-12-04 20:05 sunshineflt 阅读(547) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://tieba.baidu.com/p/5808213479 在TCP传输过程中,如果接收方超过指定时间未响应,发送方会重新发送数据包。这样就形成了重传(Retransmission)包。使用Wireshark抓包的时候,Wireshark会自动识别重传包,并进行标记。在包详情的 阅读全文
posted @ 2018-11-05 21:43 sunshineflt 阅读(2052) 评论(0) 推荐(1) 编辑
摘要: 实验平台每跑一次实验,实验数据的out.tr都是几G容量,原平台磁盘容量小,经常需要拷贝不方便,而且数据量一大就无法进行处理。所以对实验平台的系统扩容。扩容方法参考了:https://blog.csdn.net/leon1741/article/details/56494797 阅读全文
posted @ 2018-08-07 09:55 sunshineflt 阅读(752) 评论(0) 推荐(0) 编辑
摘要: 执行gnuplot后,输入图像指令,图像没有出现。 如果原因是:type set to 'unknown' 那么解决方法是:重新按照下面指令安装gnuplot You could try this command for installing the GNU plot and work on it 阅读全文
posted @ 2018-05-08 13:08 sunshineflt 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 具体查看博文: https://blog.csdn.net/lishanmin11/article/details/77098136 阅读全文
posted @ 2018-04-26 11:36 sunshineflt 阅读(596) 评论(0) 推荐(0) 编辑
摘要: 综合记录monitor的例子和源码: https://github.com/mininet/mininet-util https://github.com/mininet/mininet-tests https://bitbucket.org/kunyi731/cs244pa2/src/9f9140 阅读全文
posted @ 2018-04-26 11:32 sunshineflt 阅读(388) 评论(0) 推荐(0) 编辑
摘要: mininet链路中开启了ECN ,对应的队列管理协议是RED,RED的ECN阈值K的默认值在: mininet/link.py 如果不想直接修改mininet内核文件,外部代码修改方式可参考: https://github.com/aranb/vcc-exp/blob/master/tcpecn. 阅读全文
posted @ 2018-04-26 11:21 sunshineflt 阅读(246) 评论(0) 推荐(0) 编辑