PS C:\WINDOWS\system32> Get-VMIntegrationService nsUB2404hv
VMName Name Enabled PrimaryStatusDescription SecondaryStatusDescription
------ ---- ------- ------------------------ --------------------------
nsUb2404hv Guest Service Interface False OK
nsUb2404hv Heartbeat True OK
nsUb2404hv Key-Value Pair Exchange True No Contact
nsUb2404hv Shutdown True OK
nsUb2404hv Time Synchronization True OK
nsUb2404hv VSS True OK The protocol version of the component installed in the virtual machine does not match the version expected by t...
PS C:\WINDOWS\system32> Enable-VMIntegrationService -VMName "nsUb2404hv" -Name "Guest Service Interface"
PS C:\WINDOWS\system32> Get-VMIntegrationService nsUB2404hv
VMName Name Enabled PrimaryStatusDescription SecondaryStatusDescription
------ ---- ------- ------------------------ --------------------------
nsUb2404hv Guest Service Interface True No Contact
nsUb2404hv Heartbeat True OK
nsUb2404hv Key-Value Pair Exchange True No Contact
nsUb2404hv Shutdown True OK
nsUb2404hv Time Synchronization True OK
nsUb2404hv VSS True OK The protocol version of the component installed in the virtual machine does not match the version expected by t...
PS C:\WINDOWS\system32>
sudo apt update
sudo apt install openssh-server -y
sudo systemctl status ssh
sudo vi /etc/ssh/sshd_config
sudo systemctl restart ssh
sudo ufw allow ssh
sudo ufw enable
sudo ufw status
sudo apt install apt-transport-https ca-certificates curl gnupg -y
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
# Update the package index with the Docker repository
sudo apt update
# Install the latest version of Docker and its plugins
sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y
# Add your user to the docker group
sudo usermod -aG docker $USER
# Apply the new group membership
newgrp docker
docker run hello-world
docker compose version
# cockpit
- apt update and install
```bash
sudo apt update
sudo apt install cockpit -y
sudo systemctl enable --now cockpit.socket
sudo ufw allow 9090/tcp
sudo ufw reload
sudo systemctl status cockpit
curl -s https://install.zerotier.com | sudo bash
sudo zerotier-cli status
sudo zerotier-cli join <network_id>