Displaying 5 results from an estimated 5 matches for "elementstim".
Did you mean:
elementstime
2014 Mar 13
4
questions on clock catchup
In http://libvirt.org/formatdomain.html#elementsTime , we could find there are
three attributes of catchup tickpolicy: limit, threshold and slew.
"
The catchup element has three optional attributes, each a positive integer.
The attributes are threshold, slew, and limit.
"
The xml format likes:
<clock offset='utc'>
<...
2014 Mar 13
0
Re: questions on clock catchup
On 03/13/2014 12:49 AM, Jincheng Miao wrote:
> In http://libvirt.org/formatdomain.html#elementsTime , we could find there are
> three attributes of catchup tickpolicy: limit, threshold and slew.
>
> "
> The catchup element has three optional attributes, each a positive integer.
> The attributes are threshold, slew, and limit.
> "
> The xml format likes:
> <...
2014 Mar 13
0
Re: questions on clock catchup
On Thu, Mar 13, 2014 at 02:49:13AM -0400, Jincheng Miao wrote:
> In http://libvirt.org/formatdomain.html#elementsTime , we could find there are
> three attributes of catchup tickpolicy: limit, threshold and slew.
>
> "
> The catchup element has three optional attributes, each a positive integer.
> The attributes are threshold, slew, and limit.
> "
> The xml format likes:
> <...
2012 Jul 16
1
Using virsh to load scripts for the guest machine
Right on the top of
http://www.centos.org/docs/5/html/5.2/Virtualization/chap-Virtualization-Managing_guests_with_virsh.html,
it seems to imply you can load/send scripts to the vm guest using virsh.
Is that possible? How and what are the limitations? Can you query the vm
guest?
2017 Mar 21
2
[PATCH] p2v: Calculate offset of the Real Time Clock from UTC.
Unlike the <cpu> node (see the other thread on the libguestfs ML),
reading the Real Time Clock doesn't require libvirt and does work :-)
For reference, read:
https://libvirt.org/formatdomain.html#elementsTime
https://en.wikipedia.org/wiki/Time_zone
To test this you can run virt-p2v under qemu with a RTC offset:
make -C p2v \
run-virt-p2v-in-a-vm \
QEMU_OPTIONS="-rtc base=`date +%Y-%m-%dT12:%M:%S`"
^^
Adjust the hour (marke...