|
|
|
|
|
|
|
|
|
|
xen-users
Re: [Xen-users] Time diferrence between dom0 and domU
On 11/11/2009 12:32, Pasi Kärkkäinen wrote:
On Wed, Nov 11, 2009 at 12:03:23AM +0300, Matthieu Patou wrote:
Hello Jordi,
I noticed the same problem and that's pretty nasty on HVM host running
windows as the system can't login on domain by defaut due to too big
time drift.
I worked around by adding ~ 6 minutes to the time of the domU at startup.
Can you please paste your /etc/xen/<windowsguest> cfgfile.. let's see if
there's something to tweak, related to that time problem.
-- Pasi
Here it is:
import os, re, time
arch = os.uname()[4]
if re.search('64', arch):
arch_libdir = 'lib64'
else:
arch_libdir = 'lib'
kernel = "/usr/lib/xen-3.2-1/boot/hvmloader"
builder='hvm'
memory = 1500
shadow_memory = 16
name = "xen-w2k8"
vif = [ 'bridge=br1' ]
disk = [ 'phy:/dev/vgxen/lvvz01_w2k8,hda']
device_model = '/usr/' + arch_libdir + '/xen-3.2-1/bin/qemu-dm'
# boot on floppy (a), hard disk (c) or CD-ROM (d)
# default: hard disk, cd-rom, floppy
boot="c"
acpi = 1
apic = 1
sdl=0
vnc=1
usb=1
#usbdevice=[ 'tablet', 'host:04b9:0300']
usbdevice='tablet'
# Have to make a clever thing for daylight saving ...
rtc_timeoffset=-(time.altzone)
localtime=0
stdvga=0
vncconsole=1
vncpasswd='chazam'
monitor=1
serial='pty'
vncviewer = 0
vcpus = 2
cpus = '2,3'
independent_wallclock = 1
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|