Python list 与 str 互转
摘要:str 转list str转list有两种方法,一种是list()函数,一种是split()方法 ,list()会把字符串的每一个字符分开,而split只是根据条件切分字符串成为列表. >>> str1="你好 hello world" >>> list(str1) ['你', '好', ' ',
阅读全文
docker 报错 Error response from daemon: error while validating Root CA Certificate: x509: certificate has expired or is not yet valid
摘要:#是因为集群时间不同步[root@kycx124 ~]# docker swarm join --token SWMTKN-1-10s4 10.10.185.111:2377 Error response from daemon: error while validating Root CA Cer
阅读全文
linux 查看系统硬件配置
摘要:1、查看cpu 信息 more /proc/cpuinfo | grep "model name" grep "model name" /proc/cpuinfo #如果觉得需要看的更加舒服 grep "model name" /proc/cpuinfo | cut -f2 -d: 2、查看内存信息
阅读全文