摘要:
使用powershell更改盘符 echo `n Write-host "Display existing driveLetter partition" -ForegroundColor Green Get-Volume echo `n function getvolume { $volume_a 阅读全文
摘要:
处理 .csv 格式的文件,将不包含指定字符的行写入新的 .csv 文件 #! /usr/bin/env python # -*- coding: utf-8 -*- import socket import struct import re read_data = open('./result.c 阅读全文
摘要:
Pod控制器: ReplicaSet: 帮助用户管理无状态的pod资源,并确保pod可以精确反应用户所定义的目标数量 主要有三个资源: 1、用户期望的pod副本,即由replicaset管控的pod副本数量 2、标签选择器,即ReplicaSet判断pod归自己管理的依据; 3、pod模板:假如现存 阅读全文
摘要:
三台Linux系统搭建K8S集群 参考博客 服务器配置如下: hostname Server IP centos version docker version k8s version master 192.168.72.131 7.7.1908 19.03.8 1.18.2 node2 192.16 阅读全文
摘要:
centos初始化脚本 扩容 #!/bin/bash #下述下个变量需要根据实际情况进行修改 disk="/dev/sdb" partition="$disk"1 num=190 help () { echo ' ' echo ' The script has three variables: << 阅读全文
摘要:
扩容 #!/bin/bash #下述下个变量需要根据实际情况进行修改 disk="/dev/sdb" partition="$disk"1 num=90 echo "n p 1 t 8e w " | fdisk $disk &>/dev/null #判断分区是否成功 a="`fdisk -l | g 阅读全文
摘要:
w'indows上名称解析目录: C:\Windows\System32\drivers\etc https://jocent.me/2017/06/18/dns-protocol-principle.html https://www.jianshu.com/p/b34a006662df 重点参考 阅读全文
摘要:
在vSphere Web Client上面创建的虚拟机,用了一段时间后存储无法满足需求,需要将原来的存储300G扩容到500G 点此编辑即可修改磁盘2的储存大小,但是修改此配置后,虚拟机centos是无法直接识别500G硬盘的,需要使用 growpart 命令扩展分区和文件系统, https://h 阅读全文
摘要:
> getmac > getmac | select-string "00" > $a = getmac | select-string "00" > $a >-split $a | select-string "00" 阅读全文
摘要:
两个脚本 Run.vbe 参考https://blog.csdn.net/skypeGNU/article/details/12708221 被调用脚本:CmdCalled.bat 双击执行 Run.vbe后 阅读全文