Trying to build xen 4.2 .... Everything was going OK until I tried to make tools
I''m getting the following error.
[root@Dales-xen-server xen-4.2.0-rc2]# make tools
make -C tools qemu-xen-dir-find
make[1]: Entering directory `/home/rig/xen/xen-4.2.0-rc2/tools''
if test -d git://xenbits.xen.org/qemu-upstream-unstable.git ; then \
mkdir -p qemu-xen-dir; \
else \
export GIT=git; \
/home/rig/xen/xen-4.2.0-rc2/tools/../scripts/git-checkout.sh
git://xenbits.xen.org/qemu-upstream-unstable.git master qemu-xen-dir ; \
fi
Initialized empty Git repository in
/home/rig/xen/xen-4.2.0-rc2/tools/qemu-xen-dir-remote.tmp/.git/
xenbits.xen.org[0: 50.57.170.242]: errno=Connection timed out
fatal: unable to connect a socket (Connection timed out)
make[1]: *** [qemu-xen-dir-find] Error 128
make[1]: Leaving directory `/home/rig/xen/xen-4.2.0-rc2/tools''
make: *** [tools/qemu-xen-dir] Error 2
Not sure if it''s firewall related. Does anyone know what port git uses?
Host OS is Centos 6.3 64 bit
Linux Dales-xen-server.pace.internal 2.6.32-279.22.1.el6.x86_64 #1 SMP Wed Feb 6
03:10:46 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
Thanks in advance
Dale G.
_______________________________________________
Xen-users mailing list
Xen-users@lists.xen.org
http://lists.xen.org/xen-users
On Mon, 2013-02-18 at 17:48 +0000, Dale Galekovic wrote:> Not sure if it’s firewall related.It certainly looks like it.> Does anyone know what port git uses?I don't offhand but I'm sure you can google or grep /etc/services just as easily as I can... If you cannot get the right port opened then you can use the slower http based method with git to clone these trees, pass "--enable-githttp" to configure. Ian. _______________________________________________ Xen-users mailing list Xen-users@lists.xen.org http://lists.xen.org/xen-users
Everything seems to be up and running but the Graphical User Interface (GUI) has
no login screen just a circle. The system is up... I can ssh or vnc in to the
system ... It''s a Dell Optiplex 990 I7 ... It seems to stop loading
the GUI ...
Ideas ??
Also trying to create a virtual Win7 machine and getting the following error
[root@Dales-xen-server xen]# xm create win7-64.cfg
Using config file "./win7-64.cfg".
Error: Errors were found at line 1 while processing ./win7-64.cfg:
kernel = "/usr/lib/xen/boot/hvmloader"
Thanks in advance
Dale G.
> Also trying to create a virtual Win7 machine and getting the following error > > [root@Dales-xen-server xen]# xm create win7-64.cfg > Using config file "./win7-64.cfg". > Error: Errors were found at line 1 while processing ./win7-64.cfg: > kernel = "/usr/lib/xen/boot/hvmloader"I don''t think this line is needed. The options I used to start a Windows guest with a stubdom are: # The domain build function. Default is ''generic'' (pv) alternately ''hvm''. builder = "hvm" # If the builder is HVM the following options are available: # Add optimisations to support Windows HVM guests viridian = 1 # Use a stubdom for the device emulation for HVM device_model_stubdomain_override = 1 # For HVM pick the boot order for the emualted BIOS # boot on floppy (a), hard disk (c), Network (n) or CD-ROM (d) # default: hard disk, cd-rom, floppy boot = "c" Regards, James