DEV Community

Pradeep Kumar
Pradeep Kumar

Posted on • Edited on

How To Install QEMU Guest Agent for Linux in Proxmox 8

Login to VM SSH and run following command:

  1. Install QEMU Guest Agent

For Debian / Ubuntu

sudo apt install qemu-guest-agent
Enter fullscreen mode Exit fullscreen mode

For RedHat

sudo yum install qemu-guest-agent
Enter fullscreen mode Exit fullscreen mode

2.Start Agent

sudo systemctl start qemu-guest-agent
Enter fullscreen mode Exit fullscreen mode
  1. Enable autostart for agent
sudo systemctl enable qemu-guest-agent
Enter fullscreen mode Exit fullscreen mode
  1. Check if agent is running
sudo systemctl status qemu-guest-agent
Enter fullscreen mode Exit fullscreen mode

After that login to proxmox > VM > Summer > IPs, you must be able to see the IP address.

Top comments (0)