Setup PowerShell Git Completion with posh-git
posh-git is a PowerShell module that integrates Git and PowerShell, providing: Git status summary in the prompt Tab completion for common git commands, branch names, and paths Installation ...
posh-git is a PowerShell module that integrates Git and PowerShell, providing: Git status summary in the prompt Tab completion for common git commands, branch names, and paths Installation ...
Enable Linux-style shell autocompletion in PowerShell using the PSReadLine module. Installation Install-Module PSReadLine Configuration Edit your PowerShell profile: notepad $PROFILE Add th...
This guide walks through installing Prometheus on a Kubernetes cluster with NFS-backed persistent storage. Create Namespace Separate infrastructure tools into a dedicated monitoring namespace: a...
MetalLB is a load-balancer implementation for bare metal Kubernetes clusters, using standard routing protocols. Installation by Manifest Apply the MetalLB manifest: kubectl apply -f https://raw....
Adaptive Replacement Cache (ARC) is used to improve IO performance, but this can reserved a lot of system memory, maybe reserve to 80% of your Proxmox system. No problem! This value can be configu...
Disk Converting Import disk to Proxmox requires converting the virtual hard disk to a supported format like raw or qcow2. In this example we will migrate a virtual machine from Hyper-V. We need t...
IMPORTANT: Don’t do anything else on the nodes while doing the following steps. You are disabling safety checks that prevent bad things from happening! Since you haven’t written anything about no...
In order to turn the container into a template, we need to delete the network interface then create a backup. From Proxmox (not inside the container): # Remove the network interface: sudo pct set...
Keep your Cloudflare DNS records up to date with your current external IP via a shell script. Reference: Cloudflare DDNS on Linux Prerequisites apt install jq curl Create the Script nano /usr...
The watch command is very helpful for monitoring commands in Linux. Unfortunately, Windows doesn’t have this command. This guide creates a custom watch function in PowerShell. Create the Custom Fu...