similar to: Latest Pv_ops dom0 fails to boot

Displaying 6 results from an estimated 6 matches similar to: "Latest Pv_ops dom0 fails to boot"

2007 Dec 03
31
How to enable 64bit solaris guest on top of solaris dom0
I can enabling 32bit solaris guest on top of solaris dom0, but I don''t know how to enable 64bit solaris guest on top of solaris dom0. what configuration I need to modify?
2007 Dec 17
16
How to configure default NIC when creating Guest
Hi All, I have a machine with three network cards, and the third card(named e1000g2) is in use now. I want to use e1000g2 as default NIC when I create Guest. How can I change the default NIC? I can override the default value of config/default-nic property of svc:/system/xvm/xend. But xend still use e1000g0 when creating Guest. BTW, I can explicitly set "bridge=e1000g2" when creating
2008 Jul 23
28
[PATCH] ioemu-remote: ACPI S3 state wake up
ioemu-remote: The device model needs to write in the ACPI tables when it wakes up from S3 state. Signed-off-by: Jean Guyader <jean.guyader@eu.citrix.com> -- Jean Guyader _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2008 May 28
2
rmeta package: metaplot or forestplot of meta-analysis under DSL (ramdon) model
Dear all, I could not draw a forest plot for meta-analysis under ramdon models using the rmeta package. The rmeta has a default function for MH (fixed-effect) model. Has the rmeta package been updated for such a function? Or someone revised it and kept a private code? I would appreciate it if you could provide some information on this question. Thanks, Andrew This email is intended
2006 Sep 29
5
Testing Report for Xen 3.0.3 rc1
We have tested Xen for 3.0.3rc1. The test includes Guest installation, device model, control panel, guest os and basic function tests. Here are issues found in our tests, For the first 6 issues, I think it''s better to be fixed in 3.0.3: 1. Para-virtualization driver doen''t work for HVM guests The hvm guest always hanged or met kernel panic when trying to load xenbus.ko. So vbd
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.