假设: salt-server: AMH salt-minion: AMH , client1741 , cdn-nginx , cdn-varnish 查看salt-minion是否 在线 [root@AMH ~]# salt ‘*’ test.ping cdn-nginx: True client1741: True AMH: True cdn-varnish:…
统计CPU信息 #!/usr/bin/env Python from __future__ import print_function from collections import OrderedDict import pprint def cpuinfo(): ”’ Return the information in /proc/cpuinfo as a dictionary in…
下载相关依赖包 yum install -y gcc gcc-c++ make zlib zlib-devel openssl openssl-devel 下载Python-2.7.13.tgz并安装 tar zxvf /opt/python/Python-2.7.13.tgz cd /opt/python/Python-2.7.13/ ./configure –prefix=/usr/local/python2.7.13 –enable-shared make && make install 使用最新版本的python…
各种 Python 库/模块/工具 1 算法 1.1 字符串处理 re 正则表达式的标准库。 StringIO / cStringIO 以读写文件的方式来操作字符串(有点类似于内存文件)。 cStringIO 是 C 语言实现的,提供高性能;而 StringIO 是 Python 实现的,提供 Unicode 兼容性。 chardet chardet…