Displaying 2 results from an estimated 2 matches for "rhel55".
Did you mean:
rhel5
2010 Oct 01
1
virt-xml-validate b0rked?
It seems that virt-xml-validate doesn't validate what *has* to be valid XML, that generated by virsh dumpxml against a running domain:
[root at etc752365a ~]# virsh list
Id Name State
----------------------------------
2 rhel55 running
3 rhel53 running
[root at etc752365a ~]# virsh dumpxml rhel55 > foo.xml
[root at etc752365a ~]# virt-xml-validate foo.xml
foo.xml:8: element type: Relax-NG validity error : Invalid attribute arch for element type
foo.xml:9: element boot: Relax-NG validity...
2010 Jul 29
4
[PATCH 0/3] Inspection code in C
These three patches (two were previously posted) can do simple
operating system inspection in C.
Example of use:
><fs> add-ro rhel55.img
><fs> run
><fs> inspect-os
/dev/VolGroup00/LogVol00
><fs> inspect-get-type /dev/VolGroup00/LogVol00
linux
><fs> inspect-get-distro /dev/VolGroup00/LogVol00
rhel
><fs> inspect-get-arch /dev/VolGroup00/LogVol00
x86_64
><fs> inspect-get-major-v...