摘要:
交换机系统启动bootrom时,在2秒内按下“CTRL+B”,此处需要输入密码才能进入BOOTROM菜单。默认密码如下: 1. S9300 V100R006及其之前的版本:9300 2. S7700 V100R006及其之前的版本:huawei 3. 盒式交换机V100R006(V100R006C0 阅读全文
摘要:
1、系统信息性能模块:psutil 源码安装: wget https://pypi.python.org/packages/source/p/psutil/psutil-2.0.0.tar.gz --no-check-certificate tar -xzvf psutil-2.0.0.tar.gz 阅读全文
摘要:
import rlcompleter,readline readline.parse_and_bind('tab:complete') 阅读全文
摘要:
#!/usr/bin/python import socket import re import sys def check_server(address,port): s = socket.socket() print "Attempting to connect to %s on port %s" % (address,port) try: s.connect((address,port))... 阅读全文
摘要:
#!/usr/bin/python import re import subprocess ARP = "arp" IP = "192.168.128.27" CMD = "%s %s" % (ARP,IP) macPattern = re.compile(":") def getMac(): p = subprocess.Popen(CMD,shell=True,stdout=subproce... 阅读全文
摘要:
1、pip下载安装 wget "https://pypi.python.org/packages/source/p/pip/pip-1.5.4.tar.gz#md5=834b2904f92d46aaa333267fb1c922bb" --no-check-certificate tar -xzvf 阅读全文
摘要:
1、top 2、htop(yum install -y htop) 3、glances(yum install -y glances) 4、dstat -l -c -m -d -r -n --top-io --top-mem --top-cpu 5、iftop(yum install -y ifto 阅读全文
摘要:
使用说明 运行以下命令生成缓存 除了网易之外,国内还有其他不错的yum源: 阿里源:http://mirrors.aliyun.com/repo/ 中科大的yum源,安装方法查看:https://lug.ustc.edu.cn/wiki/mirrors/help/centos sohu的yum源安装 阅读全文