XEN 如何将虚拟机放在 /etc/xen 以外的目录中
在我的 CentOS 5.2 机器上,必须找到 XEN 虚拟机配置文件 在 /etc/xen 中无需指定路径即可启动。 我想将我的虚拟机移至 /etc/xen/vm 以将它们与 xen服务器的配置文件。 有没有一种简单的方法可以将默认目录从 /etc/xen 更改为 /etc/xen/vm ?
On my CentOS 5.2 box the XEN virtual machine configuration files have to be located
in /etc/xen to be started without specifying a path.
I want to move my virtual machines into /etc/xen/vm to separate them from the
configuration files of the xen server.
Is there an easy way to change the default directory from /etc/xen to /etc/xen/vm ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是遵循本教程,使用
xen-tools
为您生成VM,并指定您想要放置VM的位置。 然后,您只需修改其中的配置文件(xen-tools.conf
)并更改 dir 属性:dir = /etc/xen/vm
还有一些额外的工作因为你使用的是 CentOS(如果你使用的是 Ubuntu,那就容易多了),但它仍然是可行的。
The easiest way to do it is to follow this tutorial, use
xen-tools
to generate VMs for you, and specify where you want to put your VMs. You can then just modify a config file in there (xen-tools.conf
) and change the dir property:dir = /etc/xen/vm
There's a little extra work involved since you're on CentOS (and it's a lot easier if you're on Ubuntu), but it's still do-able.