iperf3 -sSERVER_IP=159.138.214.0 # SP
SERVER_IP=119.8.155.113 # Chile
iperf3 \| #cloud-config | |
| timezone: "America/Sao_Paulo" | |
| packages: | |
| - htop | |
| - nginx | |
| wget https://dl.pstmn.io/download/version/7.25.3/win64 | |
| wget https://dl.pstmn.io/download/channel/canary/windows_64 |
| kubectl run -i --tty --rm --image ubuntu test-shell bash | |
| # https://askubuntu.com/questions/634584/how-to-download-youtube-videos-as-a-best-quality-audio-mp3-using-youtube-dl | |
| youtube-dl -f bestaudio --extract-audio --audio-format mp3 --audio-quality 5 <URL> | |
| kubectl get storageclass | |
| NAME PROVISIONER AGE | |
| efs-performance flexvolume-huawei.com/fuxiefs 102m | |
| efs-standard flexvolume-huawei.com/fuxiefs 102m | |
| nfs-rw flexvolume-huawei.com/fuxinfs 102m | |
| obs-standard flexvolume-huawei.com/fuxiobs 102m | |
| obs-standard-ia flexvolume-huawei.com/fuxiobs 102m | |
| sas flexvolume-huawei.com/fuxivol 102m | |
| sata flexvolume-huawei.com/fuxivol 102m | |
| ssd flexvolume-huawei.com/fuxivol 102m |
| grep -v '^#' /etc/squid/squid.conf | grep -v '^$' |
| # https://docs.microsoft.com/en-us/powershell/module/hyper-v/New-VMSwitch | |
| # https://docs.microsoft.com/en-us/powershell/module/hyper-v/Remove-VMSwitch | |
| New-VMSwitch –SwitchName "NAT-Switch" –SwitchType Internal –Verbose | |
| # https://docs.microsoft.com/en-us/powershell/module/netadapter/Get-NetAdapter | |
| # https://docs.microsoft.com/en-us/powershell/module/hyper-v/Get-VMSwitch | |
| Get-VMSwitch | |
| Get-NetAdapter | |
| New-NetIPAddress -IPAddress 192.168.200.1 -PrefixLength 24 -InterfaceAlias "vEthernet (NATSwitch)" |
| # https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/quick-start/enable-hyper-v | |
| Get-WindowsOptionalFeature -Online -FeatureName *hyper-v* | select DisplayName, FeatureName, State | |
| Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All |