diff --git a/Scripts/Bash/Install QEMU Guest Agent.md b/Scripts/Bash/Install QEMU Guest Agent.md index 3be4334..96aa220 100644 --- a/Scripts/Bash/Install QEMU Guest Agent.md +++ b/Scripts/Bash/Install QEMU Guest Agent.md @@ -3,14 +3,17 @@ You may need to install the QEMU guest agent on linux VMs manually, while Window === "Ubuntu Server" - ``` sh + ```sh sudo su - apt update && apt install -y qemu-guest-agent + apt update + apt install -y qemu-guest-agent systemctl enable --now qemu-guest-agent ``` === "Rocky Linux" - ``` sh - PLACEHOLDER + ```sh + sudo su + dnf install -y qemu-guest-agent + systemctl enable --now qemu-guest-agent ``` \ No newline at end of file