sh 克隆Virtualbox VM
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 克隆Virtualbox VM相关的知识,希望对你有一定的参考价值。
#!/bin/sh
old=$1
new=$2
if [ $old ] && [ $new ]
then
echo "Cloning $old, saving result as $new"
else
echo "Usage: clone-ubuntu.sh oldname newname"
fi
VBoxManage clonehd $old.vdi $new.vdi --remember
echo Hard drive cloned from $old.vdi to $new.vdi
VBoxManage createvm --name $new --ostype Ubuntu --register
echo New VM $new created.
VBoxManage storagectl $new --name "IDE Controller" --add ide
VBoxManage storageattach $new --storagectl "IDE Controller" --port 0 --device 0 --type hdd --medium $new.vdi
echo Storaged medium attached.
VBoxManage modifyvm $new --nic1 bridged --bridgeadapter1 re0
echo Networking turned on.
以上是关于sh 克隆Virtualbox VM的主要内容,如果未能解决你的问题,请参考以下文章
Windows环境下在Oracle VM VirtualBOX下克隆虚拟机镜像
sh 创建一个自动关闭ssh隧道到运行VirtualBox的主机并连接到VirtualBox VRDE或内部Windows VM RDP服务器u
vm克隆虚拟机网络配置
在Oracle VM VirtualBox中安装增强功能时,有错误[失败]。求高人指点。
Oracle VM VirtualBox虚拟机用林雨木风 怎么安装
VirtualBox:如何从主机访问 VM 上的虚拟主机?