From 02aa02dbe436fc2055bde907c55e9c6901e194c6 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Wed, 5 Feb 2025 20:10:09 -0700 Subject: [PATCH] Add Scripts/Bash/Install QEMU Guest Agent.md --- Scripts/Bash/Install QEMU Guest Agent.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Scripts/Bash/Install QEMU Guest Agent.md diff --git a/Scripts/Bash/Install QEMU Guest Agent.md b/Scripts/Bash/Install QEMU Guest Agent.md new file mode 100644 index 0000000..1bc4a7a --- /dev/null +++ b/Scripts/Bash/Install QEMU Guest Agent.md @@ -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 + ``` \ No newline at end of file