Add Scripts/Bash/Install QEMU Guest Agent.md

This commit is contained in:
2025-02-05 20:10:09 -07:00
parent 702e0686cb
commit 02aa02dbe4

View File

@ -0,0 +1,16 @@
**Purpose**:
You may need to install the QEMU guest agent on linux VMs manually, while Windows-based devices work out-of-the-box after installing the VirtIO guest tools installer.
=== "Ubuntu Server"
``` sh
sudo su
apt update && apt -y install qemu-guest-agent
systemctl enable --now qemu-guest-agent
```
=== "Rocky Linux"
``` sh
PLACEHOLDER
```