
tools
文章平均质量分 65
dash23
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
install notepadqq on ubuntu
Ubuntu下的安装方法:sudo add-apt-repository ppa:notepadqq-team/notepadqqsudo apt-get updatesudo apt-get install notepadqqUbuntu下的卸载方法:sudo apt-get remove notepadqqsudo add-apt-repository --转载 2017-07-30 07:47:05 · 492 阅读 · 0 评论 -
GO环境搭建-Win7 + Ubuntu
https://www.golangtc.com/download下载安装包go1.9beta2.windows-386.zip(windows下面也有msi,安装时会自动配置环境变量,未尝试)解压到D:\programs下面新建系统环境变量,GOROOT,D:\programs\go新建系统环境变量,GOPATH,D:\work\go编辑系统环境变量,Path,添加D转载 2017-07-08 15:38:43 · 534 阅读 · 0 评论 -
Sublime使用汇总
安装sudo add-apt-repository ppa:webupd8team/sublime-text-3sudo apt-get updatesudo apt-get install sublime-text-installer// install package controlhttps://packagecontrol.io/installation转载 2017-07-04 08:19:37 · 509 阅读 · 0 评论 -
Wireshark数据包分析实战 - 学习笔记
一、数据包分析技术与网络基础混杂模式工作在这个模式的网卡,会捕获其所在网段的所有网络通信流量,而不仅仅是其发出或者收到(通过MAC地址区分)的流量。集线器 - Hub物理层转发,从一个口收到,会转发到所有口,包括自己;交换机 - SwitcherMAC层转发,从一个口收到,会转发到所有口,但只有目标端口会接收(通过MAC地址区分);转载 2017-07-04 08:26:46 · 1356 阅读 · 0 评论 -
常用网络命令
1.ifconfig查看和配置网络设备/接口格式:#ifconfig [网络设备] [参数] #ifconfig eth0 up#ifconfig eth0 down#ifconfig eth0 arp // 启动arp协议;#ifconfig eth0 -arp // 关闭arp协议;#ifconfig -a // 显示全部转载 2017-07-04 08:27:53 · 403 阅读 · 0 评论 -
git远程命令
Copy from:http://www.ruanyifeng.com/blog/2014/06/git_remote.html在当前git仓库中,#git remote -v;查看fetch和push地址,例如:#git remote -vorigin https://github.com/shenghp312/hello-world.git (fetc转载 2017-07-04 08:20:14 · 798 阅读 · 0 评论