|
|
|
|
|
|
|
|
|
|
xen-users
Re: [Xen-users] VM configuration file when created with VMM or Virt-inst
Also, once you have installed using virt-install, you can dump the xml file of the basic configuration to a file...
virsh dumpxml <domain id> > myconf.xml
From the on you can start the vm through CLI by doing ...
virsh create myconf.xml
On Tue, Jun 3, 2008 at 8:01 AM, John Haxby < john.haxby@xxxxxxxxxx> wrote:
Kumar, Venkat wrote:
When a VM is created with VMM GUI tool or Virt-install command line tool, where will the domain configuration file be stored?
It depends ...
However, a general technique may help you:
touch /tmp/stamp
virt-install ...
find / -xdev -newer /tmp/stamp
That will find all the files that were touched by the virt-install. The "-xdev" stops find wandering off into /proc and /sys; if you suspect files are being created on some other file system you may wish to add its mount point to the list of directories to search.
jch
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|