Stella981 Stella981
4年前
Openwrt中用iftop查看网络流量情况
iftop可以查看指定网卡上的流量情况,命令说明iftop:displaybandwidthusageonaninterfacebyhostSynopsis:iftoph|npblNBPiinterfaceffiltercode
Stella981 Stella981
4年前
Linux 如何使用gdb 查看core堆栈信息
转载:http://blog.csdn.net/mergerly/article/details/41994207(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fblog.csdn.net%2Fmergerly%2Farticle%2Fdetails%2F41994207)core
Stella981 Stella981
4年前
ITerm2下使用ssh访问Linux
通常情况下,iTerm2访问远程Linux使用ssh,与Termial基本一样,方法如下:ssh <用户名@<ip然后输入访问的密码即可。当然还有的时候需要指定访问端口。ssh p <端口号 <用户名@<ip地址如果在iTerm2下的操作与termial一样,我还用它干甚?当然iTerm2有它特有的功能,这里使
Stella981 Stella981
4年前
Nginx 反向代理配置及403出现原因
//image.happy.com.confserver{  //监听80端口listen80;  //状态on,首页展现索引  //状态off,首页403,不影响下层资源访问  autoindexoff;  //image.happy.com    serve
Stella981 Stella981
4年前
PostgreSQL查看索引的使用情况
查看某个表的索引使用情况selectrelname,indexrelname,idx_scan,idx_tup_read,idx_tup_fetchfrompg_stat_user_indexeswhererelnametable_nameorderbyidx_scanasc,idx_t
Stella981 Stella981
4年前
Docker搭建redis
环境准备系统:centos7.7192.168.33.14192.168.33.15192.168.33.16 端口号:63816382一.搭建redis集群(以下步骤在每台服务器上都要执行)1.安装dockeryumyinstalldockersystemctlstartdockersystemct
Stella981 Stella981
4年前
CentOS7查看网络的相关命令
转载自:https://www.linuxidc.com/Linux/201507/119555.htm1.切换到超级用户\Oscar@localhost桌面\$suroot2.查询可用的无线网卡,其中红色为网卡号\Oscar@localhost桌面\$iwdevphy0  Int
Wesley13 Wesley13
4年前
myeclipse中加入jad查看jar源代码
1、 下载反编译工具jad a)    下载地址:http://varaneckas.com/jad/(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fvaraneckas.com%2Fjad%2F),根据相对操作界面的版本进行下载,因为我们的操作界面是windo
Stella981 Stella981
4年前
PostgreSQL 查看表字段类型及注释
一、查看pg表字段‘名称’、‘类型’、‘非空’、‘注释’SELECTa.attnameas字段名,format_type(a.atttypid,a.atttypmod)as类型,a.attnotnullas非空,c