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

Linux: Create a Shell Script to Watch Services

# create a script to watch services (notice the regex escape for special chars) sudo…

Linux: How to Display the SSL Certificate of a Remote Server URL

Command: server=test.kimconnect.comecho | openssl s_client -showcerts -servername $server -connect $server:443 2>/dev/null | openssl x509 -inform…

How To Setup ClamAV Antivirus Scanner in Kubernetes

Assumptions: A Kubernetes cluster is already setupThese are installed prior: Helm, MetalLB Load Balancer,A static…