Displaying 20 results from an estimated 138 matches for "frosted".
Did you mean:
fronted
2002 Jan 16
0
problems with rh 7.2
hello!
i'm using redhat 7.2 with ext3 as my primary fs on kernel 2.4.17 +
grsecurity + acl
after 2-3 days of uptime i'm expiriencing problems... i attached below
excert from my system logs.
machine stops responing for a few seconds and after then it looks, like it's
in normal operation again. the only problem is load, which is incrementing
constantly, but cpu is 99% idle...
2002 Jan 16
1
crashing with ext3
hello!
i'm using redhat 7.2 with ext3 as my primary fs on kernel 2.4.17 +
grsecurity + acl
after 2-3 days of uptime i'm expiriencing problems... i attached below
excert from my system logs.
machine stops responing for a few seconds and after then it looks, like it's
in normal operation again. the only problem is load, which is incrementing
constantly, but cpu is 99% idle...
after
2008 Jun 03
1
Model simplification using anova()
Hello all,
I've become confused by the output produced by a call to
anova(model1,model2). First a brief background. My model used to predict
final tree height is summarised here:
Df Sum Sq Mean Sq F value Pr(>F)
Treatment 2 748.35 374.17 21.3096 7.123e-06 ***
HeightInitial 1 0.31 0.31 0.0178 0.89519
2002 Dec 18
1
samba to samba via LDAP
Hi all,
I have lots of samba servers and want them to all authenticate against a
single password file which will be a LDAP database.
Where I want to be:
Login to a domain called "FROST" that passes the username:passwd to a domain
called "ACR" which checks LDAP.
Where I'm at:
I can login (from a W2K machine) to a test server called LIBIT which uses LDAP
2013 Apr 09
4
Converting matrix to data frame without losing an assigned dimname
Hello All,
Would like to be able to convert a matrix to a dataframe without losing an assigned dimname.
Here is an example that should illustrate what I'm talking about.
tableData <- state.x77[c(7, 38, 20, 46), c(7, 1, 8)]
names(dimnames(tableData)) <- c("State", "")
tableData
State Frost Population Area
Connecticut 139 3100 4862
2005 Mar 26
1
test65 "deliver" LDA bug
Hello.
I've tried to implement dovecot's deliver LDA to my home mailserver.
I've run into troubles :)
dovecot-deliver.conf:
-- snip --
mail = maildir:%h/Maildir:INBOX=maildir:%h/Maildir
mbox_read_locks = flock
mbox_write_locks = flock
-- snip --
when i run:
deliver -d bfg < email.txt dovecot delivers message to ~/Maildir/maildir/new
It acctually creates "maildir"
2006 Feb 28
3
error on installation
My system: Suse 9.3 Prof.
I downloaded Wine: wine-0.9.7-SuSELinux100.i586.rpm.
I get the message libstdc++.so.6 not available.
What can I do?
Please note: I am not a linux expert. What little I know,
I acquired by myself.
Regards,
suren
--
The woods are lovely dark and deep
But I have promises to keep
And miles to go before I sleep
And miles to go before I sleep (Robert Frost)
2007 Apr 21
7
Database Modeller (Mac)
Can anyone recommend a database modelling tool for the Mac? I''m
building a new Rails app and want an interface to draw out the
database''s entity relationship diagram, setup foreign keys and then
output DDL at the end to MySQL.
I''ve previously used DBDesigner, CASE Studio and some pricier
enterprise software on Windows, but can''t find anything suitable for
my
2002 Feb 20
2
Code for bivariate Poisson regression?
Dear RHelpers,
Does anyone know of any R code to perform bivariate Poisson regression
(including random effects)?
Best wishes
Simon
Simon D.W. Frost, M.A., D.Phil.
Department of Pathology
University of California, San Diego
Antiviral Research Center
(Formerly: UCSD Treatment Center)
150 W. Washington St., Suite 100
San Diego, CA 92103
USA
Tel: +1 619 543 8080 x275
Fax: +1 619 298 0177
Email:
2004 Nov 09
2
Data Censoring and Normality Tests
Hello,
I would like to know if there is a function in R that will test for
normality and handle censored data sets. Currently, I evaluate each
censored data set by the extent to which a normal scores plot
approximate a straight line. For complete data sets I use
shapiro.test().
Below is an example of a censored data set.
data1<-c(0.00, 0.00, 0.00, 5.86, 5.17, 8.17, 5.12, 4.92, 7.08,
2009 Jun 01
2
ggplot2 and Date class
I'm trying to plot a time series in ggplot, but a date column in my
data frame is causing errors. Rather than provide my own data, I'll
just refer to the scale_date example at:
http://had.co.nz/ggplot2/scale_date.html
, which reproduces the error.
> df <- data.frame( date = seq(Sys.Date(), len=100, by="1 day")[sample(100, 50)], price = runif(50) )
> dt <- qplot(date,
2006 Jan 25
7
Xen reboots on booting
Hi, i have a problem with xen.
the output of uname is:Linux xen 2.6.12-gentoo-r6 #9 SMP Mon Jan 23 18:13:25
CET 2006 i686 AMD Opteron(tm) Processor 844 AuthenticAMD GNU/Linux
i user the SAME config of the kernel, for xen0 domain,
and when i boot with xen0 kernel it reboots
after this output...
.
.
.
ipt_recent v0.3.1: Stephen Frost <sfrost@snowman.net>.
2009 Dec 01
5
Is write(2) made durable atomically?
Will a write(2) to a ZFS file be made durable atomically?
Under the hood in ZFS, writes are committed using either shadow paging or
logging, as I understand it. So I believe that I mean to ask whether a
write(2), pushed to ZPL, and pushed on down the stack, can be split into
multiple transactions? Or, instead, is it guaranteed to be committed in a
single transaction, and so committed atomically?
2012 Feb 14
2
Asterisk + Avaya (CM5.2) H.323 trunk Link
Anyone have an H.323 trunk tied between their Avaya and Asterisk box that
works? I am having some issues trying to get the two systems to connect. I
am using the ooh323 channel to try to make the connection between the two
system. I have all my configs if anyone would like to look over them. If I
do a trace on Avaya I get a denial event 1191: Network Failure.
Thanks!
-------------- next part
2006 Jan 04
5
multiple lowess line in one plot
I'm using this code to plot a smoothed line. These two columns of data
really represent 4 groups and I'd like to plot a separate line for each
group but have them all in the same plot. The R-Docs for lowess do not
seem to indicate some type of "GROUPS=var_name" option. What would be
the syntax for this?
plot(AWGT ~ lipid )
lines(lowess(lipid , AWGT, f=.8))
--
Dean
2008 Sep 21
2
r format questions
Hi,
1) I have noticed that when I use the aggregate function it outputs numbers in the results. for example:
aggregate by product
group.1 Aggregate
1 ProductA 1000400.00
2 ProductB 23232323.00
3 Missing 232323.00
is there a way to suppress the numbers infront of aggregate outputs. I checked and they don't look like columns when I do a summary so I can't -1
2019 Apr 08
3
Samba 4.8.11 for rhel7/centos7 rpms
Hi everyone,
In case anyone's interested, I've posted the rpm builds of samba 4.8.11
that I'm using on RHEL7.6. (I run these in VMs, serving as AD DCs for my
SOHO). Comments most welcomed.
http://nova.polymtl.ca/~coyote/dist/samba/samba-4.8.11
If you're on RHEL7/Centos7, you've got several repos to choose from:
http://azzurro.ezplanet.net/el7
2009 Jan 26
1
reshape problem: id and variable names not being recognized
Hi everyone. Long time listener, first-time caller here.
I have a data set that's been melted with the excellent reshape package, but
I can't seem to cast it the way I need to.
Here's the melted data's structure:
> str(mdat)
'data.frame': 6978 obs. of 4 variables:
$ VehType : Factor w/ 2 levels "Car","Truck": 1 1 2 1 1 2 1 1 1 1 ...
$ Year :
2001 Apr 28
9
DLL Error When Installing Programs
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
Running Codeweavers Preview 3 over Helix, X4, & kernel 2.4.2.
<p>Notepad & sol run fine, but when I try to install a program like
Netscape (just testing) I get the following error:
<p><font color="#990000">Invoking /opt/wine/bin/wine.bin cc32d475.exe ...</font>
2001 May 08
2
Wine Setup
Still have these questions:
CWp3 winedbg symlink is broken. How to fix?
I am hearing that in order to deinstall a Windows program, you must compile a
certain proggie from the sources. It doesn't seem to come with CWWine. Best avenue?
I chose Desktop mode, as I need two apps running simultaneously. Freedom, which is my privacy app and netscape-mail must run together, as mail is fetched