上一页 1 2 3 4 5 6 7 8 9 10 ··· 27 下一页
摘要: docker system df -v 阅读全文
posted @ 2022-06-22 18:17 tigergaonotes 阅读(360) 评论(0) 推荐(0) 编辑
摘要: restart Instances-- stop Instance -> start instance (login by ro account: d+last 7 figures of staffid and then su - root and then su - wasadm. ALL the 阅读全文
posted @ 2022-06-08 15:41 tigergaonotes 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 名词解释: apiVersion: v1 #指定api版本,此值必须在kubectl apiversion中 kind: Pod #指定创建资源的角色/类型 metadata: #资源的元数据/属性 name: test-pod #资源的名字,在同一个namespace中必须唯一 labels: # 阅读全文
posted @ 2022-06-02 15:37 tigergaonotes 阅读(63) 评论(0) 推荐(0) 编辑
摘要: # 删除所有容器 docker stop `docker ps -q -a` | xargs docker rm # 删除所有标签为none的镜像 docker images|grep \<none\>|awk '{print $3}'|xargs docker rmi # 查找容器IP地址 doc 阅读全文
posted @ 2022-05-20 16:29 tigergaonotes 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 牢记: 1.*/etc/sysconfig/network-scripts/ifcfg-eth0 网卡的配置信息 重启网卡:1)/etc/init.d/network restart(所有网卡) 2)ifdown eth0&&ifup eht0(只针对eht0) 通过steup-network co 阅读全文
posted @ 2022-05-05 10:56 tigergaonotes 阅读(88) 评论(0) 推荐(0) 编辑
摘要: ls -lrt --time-style '+%Y/%m/%d %H:%M:%S' 阅读全文
posted @ 2022-05-04 14:19 tigergaonotes 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 45101279@A156A0L62J8EDA8 MINGW64 /gyl/test $ find /gyl -name '*.txt*' ! -path '/gyl/test/*' /gyl/1.txt 45101279@A156A0L62J8EDA8 MINGW64 /gyl/test $ fi 阅读全文
posted @ 2022-04-07 12:00 tigergaonotes 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-03-21 14:51 tigergaonotes 阅读(59) 评论(0) 推荐(0) 编辑
摘要: # 查看磁盘历史IO信息 sar -d 1 1 sar -d 1 1 Linux 2.6.32-754.41.2.el6.x86_64 (tigergaonotes) 03/21/2022 _x86_64_ (4 CPU) 02:46:23 AM DEV tps rd_sec/s wr_sec/s 阅读全文
posted @ 2022-03-21 10:48 tigergaonotes 阅读(1401) 评论(0) 推荐(0) 编辑
摘要: shell 转义字符$ 在Linux shell脚本中经常用到字符$,下面是$的一些常见用法 $# 是传给脚本的参数个数 $0 是脚本本身的名字 $1 是传递给该shell脚本的第一个参数 $2 是传递给该shell脚本的第二个参数 $@ 是传给脚本的所有参数的列表 $* 是以一个单字符串显示所有向 阅读全文
posted @ 2022-03-09 02:05 tigergaonotes 阅读(1273) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 27 下一页