VirtualBox 管理工具修改 UUID(MAC)
问题:
同一个VirtualBox .vdi文件的副本拥有同一个UUID,不能同事注册在VirtualBox虚拟机中,所以要使用VirtualBox 管理工具修改 UUID,为vdi文件副本生成新的UUID,这样就可以同事注册在VirtualBox中了
命令: $ VBoxManage internalcommands sethduuid
Usage: VBoxManage internalcommands <command> [command arguments]
Commands:
sethduuid <filepath>
Assigns a new UUID to the given image file. This way, multiple copies
of a container can be registered.
例如:VBoxManage internalcommands sethduuid /home/zhangchunyan/Downloads/WinXP-old.vdi
网上一般都是写用setvdiuuid命令,可能主要是用在windows下,经测试在苹果(Mac OS X 10.7.5)里是用sethduuid
参考网址:http://blog.sina.com.cn/s/blog_9367397901012qyw.html