You could always do something like:

/usr/lib/xen/bin/xenstore-list /vm | xargs -L1 -I%
/usr/lib/xen/bin/xenstore-read /vm/%/name /vm/%/image/ostype

Or, "prettier":

/usr/lib/xen/bin/xenstore-list /vm | xargs -L1 -I% bash -c 'echo
`/usr/lib/xen/bin/xenstore-read /vm/%/name /vm/%/image/ostype`'

You can view the entire xenstore tree with:

/usr/lib/xen/bin/xenstore-ls

Or you could just parse the LISPish SXP output of "xm list --long".

Hope that helps.

 - Ian Blenke <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> http://ian.blenke.com/

On 10/10/08 9:58 AM, "Paul Whitener" <[EMAIL PROTECTED]> wrote:

> I have followed a combination of instructions from this post and have been
> able to get an Ubuntu paravirtualized instance running under snv_96.  Is there
> a way to "list" the fact that it is paravirtualized?  For example, xm list,
> virsh list, etc.
> 
> thanks
> --
> This message posted from opensolaris.org
> _______________________________________________
> xen-discuss mailing list
> [email protected]

_______________________________________________
xen-discuss mailing list
[email protected]

Reply via email to