Windows 下相当于 Linux 的 whereis 命令
2017-12-22 tech windows linux 1 mins 70 字
where 命令即可。
C:\Users\lenovo>where where
C:\Windows\System32\where.exe
where 命令即可。
C:\Users\lenovo>where where
C:\Windows\System32\where.exe
登录PostgreSQL
sudo -u postgres psql
修改登录PostgreSQL密码
ALTER USER postgres WITH PASSWORD 'postgres';
注意:
使用 :set ff
可以看到当前行尾使用的换行方式。
使用 :set ff=unix
即可修改为lf换行方式。
#!/usr/bin/python
import platform
print platform.python_version()
或
#!/usr/bin/python
import sys
print sys.version
print sys.version_info
iperf命令是一个网络性能测试工具,用来测试TCP和UDP带宽质量,它可以报告带宽,延迟抖动和数据包丢失。利用iperf这一特性,可以用来测试一些网络设备如路由器,防火墙,交换机等的性能。
centos直接使用yum安装:
sudo yum install -y iperf3
也可以源码安装http://code.google.com/p/iperf/downloads/list:
gunzip -c iperf.tar.gz | tar -xvf -
cd iperf
./configure
make
make install
服务器端:
iperf -u -s
客户端:
iperf -u -c 192.168.1.1 -b 100M -t 60 # 100Mbps发送速率,60秒。
iperf -u -c 192.168.1.1 -b 5M -P 30 -t 60 # 30个连接线程,5Mbps
iperf -u -c 192.168.1.1 -b 100M -d -t 60 # 100Mbps发送速率,上下行带宽测试。60秒
服务器端:
iperf -s
客户端:
iperf -c 192.168.1.1 -t 60 在
iperf -c 192.168.1.1 -P 30 -t 60
iperf -c 192.168.1.1 -d -t 60