上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 49 下一页
摘要: 1. ESXi 出现很多未知虚拟机 2. 开启SSH 3. SSH登录ESXi 4. 查看虚拟机信息 [root@localhost:~] vim-cmd vmsvc/getallvms Skipping invalid VM '103' Skipping invalid VM '115' Skip 阅读全文
posted @ 2021-10-21 21:08 LeoShi2020 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 1. Shell for循环跳跃不连续数 for i in {"172.15.7."{101..106},"172.15.7."{109..111},"160.168.103."{191..192}};do ssh ${i} "date";done # 进一步整合 for i in {"172.15 阅读全文
posted @ 2021-10-21 08:17 LeoShi2020 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 1. vCenter告警虚拟机需要整合状态 2. 整合快照 3. 参考链接 https://kb.vmware.com/s/article/1002310?lang=zh_cn 阅读全文
posted @ 2021-10-20 09:28 LeoShi2020 阅读(1240) 评论(0) 推荐(0) 编辑
摘要: 1. 下载源码包 # screen 4.9.1 curl -O http://ftp.gnu.org/gnu/screen/screen-4.9.1.tar.gz # 依赖包 curl -O http://ftp.gnu.org/gnu/ncurses/ncurses-6.4.tar.gz 2. 安 阅读全文
posted @ 2021-10-16 09:26 LeoShi2020 阅读(586) 评论(0) 推荐(0) 编辑
摘要: 1. 安装libtool yum install -y libtool END 阅读全文
posted @ 2021-10-16 09:04 LeoShi2020 阅读(971) 评论(0) 推荐(1) 编辑
摘要: 1. 安装autoconf yum install -y autoconf END 阅读全文
posted @ 2021-10-16 09:01 LeoShi2020 阅读(626) 评论(0) 推荐(0) 编辑
摘要: 1. 计算脚本执行时间 $start = Get-Date Get-HotFix $end = Get-Date Write-Host -ForegroundColor Red ('Total Runtime: ' + ($end - $start).TotalSeconds) END 阅读全文
posted @ 2021-10-16 08:56 LeoShi2020 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 1. 问题 | 10/16/2021 2:04:54 AM Move-VM The request channel timed out attempting to send after 00:05:00. Increase the timeout value passed to the call t 阅读全文
posted @ 2021-10-16 08:16 LeoShi2020 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 1. tmux安装 #yum install -y tmux 2. 会话管理 功能 命令 快捷键 创建新会话 tmux new -s <命名> 查看所有会话 tmux ls 接入会话 tmux at -t <会话号|名称> 重命名会话 tmux rename-session -t <old-name 阅读全文
posted @ 2021-10-15 21:43 LeoShi2020 阅读(136) 评论(0) 推荐(0) 编辑
摘要: while(1){ netstat -ano | ForEach-Object { if((($_ -split "\s+")[3] | ?{$_ -match "(:+80)$"}) -And (($_ -split "\s+")[4] | ?{$_ -match "SYN_SENT"})){ e 阅读全文
posted @ 2021-10-12 11:46 LeoShi2020 阅读(175) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 49 下一页