上一页 1 2 3 4 5 6 7 8 ··· 27 下一页
摘要: jps 显示出所有的 JAVA 进程以及 PID jstat 查看堆内存各部分的使用量,以及加载类的数量 jstack – 用来查看堆栈信息 jps -lvmV top -Hp pid 将线程转换为16进制,因为堆栈里线程id是用16进制表示的。 printf “%x\n” 线程id 查看堆栈,找到 阅读全文
posted @ 2022-12-09 23:04 tigergaonotes 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 关于时区的概念,其实初中地理课已经涉及,很多人都多少了解一些,可能只是细节搞不太清楚。为什么会将地球分为不同时区呢?因为地球总是自西向东自转,东边总比西边先看到太阳,东边的时间也总比西边的早。东边时刻与西边时刻的差值不仅要以时计,而且还要以分和秒来计算。整个地球分为二十四时区,每个时区都有自己的本地 阅读全文
posted @ 2022-12-06 21:36 tigergaonotes 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 转:https://www.cnblogs.com/tylerzhou/p/11027559.html 阅读全文
posted @ 2022-12-06 21:35 tigergaonotes 阅读(16) 评论(0) 推荐(0) 编辑
摘要: //file1.txt I need to buy apples. I need to run the laundry. I need to wash the dog. I need to get the car detailed. //file2.txt I need to buy apples. 阅读全文
posted @ 2022-12-01 23:03 tigergaonotes 阅读(50) 评论(0) 推荐(0) 编辑
摘要: EC2 (Elastic Compute Cloud) ECS (Elastic Container Service) ECR (Elastic Container Registry) Lambda https://aws.amazon.com/lambda/ Run your Code in Re 阅读全文
posted @ 2022-11-19 23:45 tigergaonotes 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 找到inum号,根据inode节点删除即可 阅读全文
posted @ 2022-11-18 23:13 tigergaonotes 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-11-17 15:33 tigergaonotes 阅读(19) 评论(0) 推荐(0) 编辑
摘要: [root@localhost ~]# passwd -d beinan 注:清除beinan用户密码; Removing password for user beinan. passwd: Success 注:清除成功; 复制代码 代码如下: [root@localhost ~]# passwd 阅读全文
posted @ 2022-11-03 10:21 tigergaonotes 阅读(77) 评论(0) 推荐(0) 编辑
摘要: $ cat 8.sh #!/bin/bash array=(1 2 3) echo "case 1" for line in ${array[@]} do echo $line done $ ./8.sh case 1 1 2 3 阅读全文
posted @ 2022-10-28 14:54 tigergaonotes 阅读(6) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/waldron/p/16801111.html 阅读全文
posted @ 2022-10-17 23:23 tigergaonotes 阅读(12) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 27 下一页