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 Upgrade Kubernetes Ingress Nginx Deployed via Helm

# How to upgrade ingress-nginx: helm upgrade --reuse-values ingress-nginx ingress-nginx/ingress-nginx -n ingress-nginx # Sample output of a failure scenario: brucelee@k8-controller:~$ helm…

Linux: Shell Script to Reboot Remote Devices Daily

Set Variables remoteDevice=900.468.20.1username=adminpassword="PASSWORDHERE" Install sshpass if it doesn't exist if ! sshpass -v sshpass &>…

How to configure Ubiquiti EdgeRouter to send logs to a Syslog Server

Method 1: using text editor # Edit the syslog config sudo vi /etc/rsyslog.d/vyatta-log.conf # Change…