Linux
netstat -anp\|grep <port>
lsof -i:<port>
ping www.baidu.com
ifconfig
- Check internet speed via terminal
curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python -
Windows
-
netstat –ano
: 查看所有进程占用的端口 -
netstat –ano|findstr <port>
: 查看占用指定端口的程序 -
tasklist
: 列出当前所有运行进程 -
tskill <PID>
: 干掉某进程 -
systeminfo
: 可以查看网卡等各项详细系统信息
网友评论