Install Qemu Guest Agent
The qemu-guest-agent
is a daemon that runs on the guest operating system to provide enhanced communication between the host and guest. Installing this agent can help improve the performance and manageability of your Virtual Lab. Below are the steps to install qemu-guest-agent on different operating systems supported by 8Labs.
Preparation - Update the package list
- Debian, Ubuntu
- CentOS Stream, RockyLinux, AlmaLinux
- FreeBSD
sudo apt update
sudo dnf update
sudo pkg update
Install the qemu-guest-agent
- Debian, Ubuntu
- CentOS Stream, RockyLinux, AlmaLinux
- FreeBSD
sudo apt install qemu-guest-agent
sudo dnf install qemu-guest-agent
sudo pkg install qemu-guest-agent
Enable the service to start on boot
- Debian, Ubuntu
- CentOS Stream, RockyLinux, AlmaLinux
- FreeBSD
sudo systemctl enable qemu-guest-agent
sudo systemctl enable qemu-guest-agent
sysrc qemu_guest_agent_enable="YES"
Start the service
- Debian, Ubuntu
- CentOS Stream, RockyLinux, AlmaLinux
- FreeBSD
sudo systemctl start qemu-guest-agent
sudo systemctl start qemu-guest-agent
sudo service qemu-guest-agent start