Posted On March 28, 2019

How to Move Virtualbox Guest VMs to Different Hosts

kimconnect 0 comments
blog.KimConnect.com >> Linux >> How to Move Virtualbox Guest VMs to Different Hosts
Connect to Source Host and copy files to NAS:
ssh webadmin@server01
vboxmanage list running vms
vboxmanage controlvm “[machine name]” poweroff
scp -r /media/KimConnectVirtStorage/virtual_disk_images/qa.kimconnect.com webadmin@NAS:/home/webadmin
 
Connect to Destination Host:
ssh webadmin@NAS
# check disk space
df -h
mv qa.kimconnect.com/ Virtual\ Box\ VMS/
 
# command to associate VMDK to Virtualbox is to be researched
vboxmanage controlvm “[machine name]” poweron

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How To Configure Alternative Storage for a Kubernetes (K8s) Worker Node

The below illustration is assuming that one has a local RAID mount being added to…

Linux Mint /dev/sda1 Out of Space Issue

Issue: "sudo apt --fix-broken install"leads to something such as:"dpkg: error processing archive /var/cache/apt/archives/linux-image-6.8.0-87-generic_6.8.0-87.88~22.04.1_amd64.deb(--unpack):cannot copy extracted…

Install ScreenConnect on CentOS

If this server is not behind a firewall, then the below instructions would suffice:1. Install…