Skip to main content

Documentation Index

Fetch the complete documentation index at: https://help.onetsolutions.net/llms.txt

Use this file to discover all available pages before exploring further.

The QEMU Guest Agent is an essential component for communication between the host and QEMU-based virtual machines. It enables features like proper shutdown, filesystem freeze for snapshots, and improved VM management.
Prerequisites
  • A VPS with OnetSolutions
  • SSH or console access to your server
  • Root or sudo privileges

Installation Instructions

1

Update package lists

sudo apt update
2

Install the QEMU Guest Agent

sudo apt install qemu-guest-agent
3

Start the service

sudo systemctl start qemu-guest-agent
4

Enable automatic startup

sudo systemctl enable qemu-guest-agent
5

Verify the installation

sudo systemctl status qemu-guest-agent
You should see a message indicating the service is active and running.

Configuration (Optional)

On Linux systems, you can customize the QEMU Guest Agent behavior by editing its configuration file:
sudo nano /etc/qemu/qemu-guest-agent.conf
The default configuration works well for most use cases. Only modify this file if you have specific requirements.

Troubleshooting

Ensure the QEMU Guest Agent channel is enabled on your VM. Contact OnetSolutions support if the issue persists.
Restart the service and check the logs:
sudo systemctl restart qemu-guest-agent
sudo journalctl -u qemu-guest-agent