Displaying 20 results from an estimated 10000 matches similar to: "DomU occasional Boot hang"
2011 May 04
0
Fwd: simple question
Sorry I had typo in previous email,
this typo corrected version:
Dear R experts
I have simple question, please execuse me:
#example data, the real data consists of 20000 pairs of variables
K1 <- c(1,2,1, 1, 1,1); K2 <- c(1, 1,2,2, 1,2); K3 <- c(3, 1, 3, 3, 1, 3)
M1a <- rep( K1, 100); M1b <- rep(K2, 100)
M2a <- rep(K1, 100); M2b <- rep(K1, 100)
M3a <- rep(K1, 100); M3b
2008 Jun 10
2
Dom0 and Domu sharing a physical IRQ results in eventual crash
I have one xen machine where dom0 libata and pcibacked domU eth0 share a
physical IRQ. I thought that the disk was bad (cause the system was
crashing and giveing me disk errors) and replaced it with an IDE disk
connected to a pcibacked SATA-IDE combo card. Problem seems to have gone
away. The machine runs stably and hasn''t crashed yet.
Now I have another machine where I pciback usb.
2016 Jul 17
2
Occasional lock timeouts on Linode VM with Dovecot Replication
I've been seeing periodic entries in my dovecot logs like this:
dovecot[3464]: dsync-server(kaylene): Error: Couldn't lock
/home/kaylene/.dovecot-sync.lock: Timed out after 30 seconds: 3 Time(s)
dovecot[3464]: dsync-server(reuben): Error: Couldn't lock
/home/reuben/.dovecot-sync.lock: Timed out after 30 seconds: 1 Time(s)
They occur several times per day, but don't appear to
2011 Sep 03
2
problem in applying function in data subset (with a level) - using plyr or other alternative are also welcome
Dear R experts.
I might be missing something obvious. I have been trying to fix this problem
for some weeks. Please help.
#data
ped <- c(rep(1, 4), rep(2, 3), rep(3, 3))
y <- rnorm(10, 8, 2)
# variable set 1
M1a <- sample (c(1, 2,3), 10, replace= T)
M1b <- sample (c(1, 2,3), 10, replace= T)
M1aP1 <- sample (c(1, 2,3), 10, replace= T)
M1bP2 <- sample (c(1, 2,3), 10, replace= T)
2009 Jan 16
1
occasional ssh hang
I am noticing the same problem with 'ssh host uptime' hanging. Did this ever get resolved?
I am using OpenSSH on Redhat 6.2 (Intel) and Solaris 2.6 (Sparc). I have a
job on the linux machine that ssh's to the Solaris machine every 20 seconds
or so and runs uptime. The problem is that after many iterations of this,
ssh will occasionally hang, and require a kill -9 to get rid of
2001 May 24
0
occasional ssh hang
I am using OpenSSH on Redhat 6.2 (Intel) and Solaris 2.6 (Sparc). I have a
job on the linux machine that ssh's to the Solaris machine every 20 seconds
or so and runs uptime. The problem is that after many iterations of this,
ssh will occasionally hang, and require a kill -9 to get rid of the
process. The problem happens with both protocol version 1 and 2, but it
seems to happened more often
2007 May 25
0
sata_via freeze
Hi all,
I have a machine with a Assus P5VD2-MX, it has a VIA chipset. The
problem is sometimes without any reason all freeze, can't use network
and when I type a command in shell occur a I/O error.
I already test memory, and the problem are in two similars machines.
I see in CentOS foruns someone with the same problem using the
sata_via driver but without an answer.
I'm running Centos
2010 Jun 16
4
perfomance issue with bricscad
Hi winegurus!
I am quite new to wine. :(
I have winehq latest stable release installed.
My os is Ubuntu lucid.
My hardware: core 2 duo 2.3ghz, graphic card nvidia 220 gt with 1g , board assus p5kpl am in, 1g ram
My nvidia has proper drivers installed and recognized by x
I installed bricscad v9 for windows without any problems.
Tip: Bricscad seems to run quicker when I select nt 3.5 or 4.0 on
2008 Dec 16
0
stably updating the SD
Hi,
I have some summary data from which I know a few points and I'd like
to remove them. Does anyone know if there is an R module that
implements something like Hanson (1975)?
Hanson (1975). Stably updating mean and standard deviation of data.
Communications of the ACM, 18(1), 57-58.
2020 Oct 06
0
S4 - inheritance changed by order of setClassUnion and setAs()
Andreas,
As far as I can tell (/conjecture), this is because the list of classes a
particular class inherits from directly is appended to as needed, and so
the order that a class extends others isd refined by the order that those
connections are defined.
We can see this with two setClassUnion calls, rather than required setAs:
> setClass("grandma", slots = c(a =
2004 Aug 20
1
drop1 with contr.treatment
Dear R Core Team
I've a proposal to improve drop1(). The function should change the
contrast from the default ("treatment") to "sum". If you fit a
model with an interaction (which ist not signifikant) and you
display the main effect with
drop1( , scope = .~., test = "F")
If you remove the interaction, then everything's okay. There is
no way to fit a
2005 Nov 25
1
Use of nesting in lmer- error in numerical expression
Dear R users,
I am trying to fit a GLMM using lmer to a dataset where the brood identity
(LNRREIR) is nested within mothers identity. The reason for this is that
each mother can have several nests within each year and also between years.
I am running the following script (actually I have tried all different
combinations with LNRREIR and mother):
mod <- lmer(sr~z.hatchday +
2004 May 29
1
multiple nesting levels in GEE
Hello,
I'm actually trying to fit a gee model with 2 nesting levels since I expect a
correlation between all members of a litter at a first level and between all
individuals sharing a mother at a second superior level with an exchangeable
matrix. I order my dataframe by both mother and litter
I try several syntaxes:
id= mother*litter which give the same correlation matrix as id=
2007 Oct 25
1
subsetting
Dear all,
I have received some data on birds that looks sth like this:
# a unique id for each individual
id <- c(1,1,1,2,2,2,3,3,3,4,4,5,6)
# the year the bird was measured
year <- c(1995, 1996, 1997, 1995, 1996, 1997, 1996, 1997, 1998, 1996, 1997, 1997, 1998)
# the year the bird was hatched
year.hatch <- c(1995, 1995, 1995, 1995, 1995, 1995, 1996, 1996, 1996, 1996, 1996, 1997, 1998)
2020 Oct 05
2
S4 - inheritance changed by order of setClassUnion and setAs()
Dear colleagues,
there is a behaviour with S4 (virtual) classes that I find very hard to understand: Depending on the position
of setAs(), the tree of inheritance changes.
This is my baseline example that defines the classes "grandma", "mother", "daughter" and a virtual
class "mr_x". For a new instance if "daughter", "mr_x" is betweeen
2006 Jun 04
2
Asterisk on Mini-Box M300
Hi,
Did anyone try to install Asterisk on the Mini-Box
M300 with a Versa
mini-ITX board 1GHz VIA x86 CPU?
The box looks promissing, but I am not sure if Digium
cards are compatible
with the mother board (Versa mini-ITX)
Also I am not sure if the 1GHz VIA processor can
handle a Digium 24 port
analog board, or an E1 digital board.
If anyone had tried the Mini-Box, the processor, of
the mother
2007 Oct 26
1
[Fwd: Re: subsetting]
Sorry that I was unclear. For an individual to qualify for my analysis I
want both of the following two criteria to be fulfilled:
First, I want to select measurement taken at a certain age: for the
focal individual the year of measurement (year) should be the same as
year.hatch
Second, I want the focal individual to be born by a mother that
reproduces for the first time.
So the /parents /of
2009 Apr 12
3
problem with DivX9 and winetricks
HI
Trying to install Divx9 using winetricks. Using Ubuntu 8.10 and have cabextract installed, and my graphics card has it's driver installed (NVIDIA GEforce FX 5200).
Installation seems to go ok but does not re-start machine and there appear to be error messages in the terminal window, despite the fact that it says DivX is isntalled.
Testing results by trying to play Age of Empires II -
2019 Mar 24
2
Icecast 2.5 release
Hello! I see that version 2.5 is still in beta2, with very interesting
features for me (like improved support for TLS). Does anyone know when it
will be launched stably? Any estimated date? Thank you.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.xiph.org/pipermail/icecast/attachments/20190324/2960ffc6/attachment.html>
2006 Sep 14
2
Xen 3.0.2-2 and linux 2.6.16.27+ kernels?
Is anyone successfully and stably using linux 2.6.16.27 or 2.6.16.28 or
2.6.16.29 with xen 3.0.2-2 package?
regards
Tomasz
--
GPG key fingerprint: 3883 B308 8256 2246 D3ED A1FF 3A1D 0EAD 41C4 C2F0
GPG public key availabe on pgp.mit .edu keyserver
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users