Displaying 11 results from an estimated 11 matches for "kingsli".
Did you mean:
kingsly
2008 Dec 02
1
CentOS-4 Xen kernel with low RAM and Badness in local_bh_enable at kernel/softirq.c:141
I have small xen VM running centos4 which acts as a router/firewall, and has
been working fine for over 1.5 years with 32MB of RAM and a kernel I either
got from xensource.org or built myself from their sources. (centos 4 didn't
have a xen kernel back then)
I lost the kernel to a corrupted disk and decided to use the centos provided
xen kernel.
All these months 32MB + 64MB Swap was more than
2009 Apr 02
1
Out of sync mirror / nss error
centos.mirror.nac.net is out of sync (at least for updates)
http://centos.mirror.nac.net/5.3/updates/x86_64/RPMS/
vs
http://ftp.osuosl.org/pub/centos/5.3/updates/x86_64/RPMS/
this is what is causing the nss/nss-devel error when doing a yum update
Transaction Check Error:
package nss-3.12.2.0-4.el5.centos (which is newer than
nss-3.12.2.0-2.el5.centos) is already installed
Kingsly
--
2006 Dec 30
0
RE: CentOS Digest, Vol 23, Issue 30
-----Original Message-----
From: "centos-request at centos.org" <centos-request at centos.org>
To: "centos at centos.org" <centos at centos.org>
Sent: 12/30/06 12:01 PM
Subject: CentOS Digest, Vol 23, Issue 30
Send CentOS mailing list submissions to
centos at centos.org
To subscribe or unsubscribe via the World Wide Web, visit
2006 Dec 30
1
logrotate: how to email logs with mutt?
Hello,
next week I'll install logrotate on a centos 4.4 server via yum.
The man page says that the default mail command is /bin/mail -s, but
there is no such binary on Centos.
I do have mutt installed, however, so I would like to use it. Ideally,
I would like to have logrotate send logs with mutt as attachments like
this:
mutt me at home.account -a compressed_log_file -s "here are
2020 Dec 08
3
[CentOS-devel] https://blog.centos.org/2020/12/future-is-centos-stream/
> Am 08.12.2020 um 15:32 schrieb Phelps, Matthew <mphelps at cfa.harvard.edu>:
>
> This is really, really bad for the majority of us using CentOS.
>
Of course it is.
> Is there any way we can lobby for the reversal of this decision? Remember
> that the -devel mailing list, and IRC channels *do not* represent the vast
> majority of CentOS users. Most of us are just
2007 Dec 01
2
Slightly OT: Conexant fax/modem not faxing with sendfax
On Nov 30, 2007 6:35 PM, Kingsly John <member+centos at kingsly.net> wrote:
>
> What you have isn't a "real" modem .. it's just a winmodem that is usable
> under linux. "real" modems don't need drivers to work.
>
> 11/30 00:31:52 dem mdm_command: string 'AT+FCLASS=2.0'
> 11/30 00:31:52 dem mdm_command: string 'ERROR' ->
2013 Dec 08
2
How to evaluate sequence of strings like this
Hello Dear R community,
This is my problem. I have a data set (dataframe) called "mydat". It consist of 3 numerical variable. They are Centrecode, FSUSN and Round. I want to create unique ID by combining these 3 variables.
Follwing commands gives me what I need.
mydat1 <- paste(mydat$Centrecode, mydat$FSUSN,mydat$Round,sep="")
newds <- data.frame(mydat1)
For a
2007 Nov 30
1
Conexant fax/modem not faxing with sendfax
I finally picked up a "real" modem (not a winmodem) and put it in my
machine. I pulled down the hsfmodem driver from the source, got a license
and installed the driver at full power.
If I use wvdial, I can get out through the modem, so I know that works.
However, sendfax is rejecting the fax capability (from
/var/log/sendfax.log):
11/30 00:31:52 sendfax: interim release 1.1.33-Apr10
2008 Oct 01
3
cryptic error message: "Error in embed(y, lag) : wrong embedding dimension"
Dear R Users,
I've been hit with a cryptic error message:
"Error in embed(y, lag) : wrong embedding dimension"
My configuration is:
- R 2.7.2
- Windows XP Sp2
Google returns nothing for this. Could someone suggest what this might
mean ?
Thanks in advance,
Tolga
Generally, this communication is for informational purposes only
and it is not intended as an offer or solicitation
2014 Jan 16
1
Doubt in simple merge
Dear R community
I have a two data set called "Elder" and "Younger".
This is my code for simple merge.
Elder <- data.frame(
ID=c("ID1","ID2","ID3"),
age=c(38,35,31))
Younger <- data.frame(
ID=c("ID4","ID5","ID3"),
age=c(29,21,31))
mer <- merge(Elder,Younger,by="ID", all=T)
Output I am
2014 Jan 19
5
how to replace <NA> values
Dear R community
I have a large data set contain some empty cells. Because of that, may be I am wrong, <NA> values are produced.
Now I want replace both empty and <NA> values with zero.
Elder1 <- data.frame(
ID=c("ID1","ID2","ID3","ID6","ID8"),
age=c(38,35,"",NA,NA))
Output I am expecting
ID age
ID1 38
ID2 35