From b55a6465b2380d14b8fb8bab4ae5d07193d56377 Mon Sep 17 00:00:00 2001 From: tcude Date: Tue, 6 Feb 2024 10:27:27 -0600 Subject: [PATCH] updated to-do and added next steps for the user at the end of the script --- vmware_to_proxmox.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vmware_to_proxmox.sh b/vmware_to_proxmox.sh index 29625ec..40e25e2 100755 --- a/vmware_to_proxmox.sh +++ b/vmware_to_proxmox.sh @@ -1,6 +1,5 @@ #!/bin/bash # To-do: -# - Add ability to choose between local-lvm and local-zfs # - Find way to carry over MAC # - Attempt to find way to fix networking post-migration automatically # - Get script to pull specs of ESXi VM and use them when creating Proxmox VM @@ -150,6 +149,11 @@ function add_efi_disk_to_vm() { } } +echo "Migration completed. Please remember to install and start the qemu-guest-agent inside the VM." +echo "For Debian/Ubuntu: sudo apt-get update && sudo apt-get install qemu-guest-agent" +echo "For CentOS/RHEL: sudo yum install qemu-guest-agent" +echo "Then, enable and start the service: sudo systemctl enable --now qemu-guest-agent" + # Main process export_vmware_vm transfer_vm