Displaying 11 results from an estimated 11 matches for "kingsly".
2008 Dec 02
1
CentOS-4 Xen kernel with low RAM and Badness in local_bh_enable at kernel/softirq.c:141
...dc>] sys_select+0x2e7/0x45c
Dec 2 16:05:21 noc kernel: [<c010740f>] syscall_call+0x7/0xb
Any idea what's causing it / how to make it stop ?
I'm running Centos 5 in Dom0 and CentOS 4 in the router domU and there's
another couple of Centos 5 domU which is running error free.
Kingsly
--
---------------------------------------------------------------------------
Kingsly At Users Dot SourceForge Dot Net -- http://kingsly.org/
---------------------------------------------------------------------------
-------------- next part --------------
A non-text attachment was scrubb...
2009 Apr 02
1
Out of sync mirror / nss error
...ac.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
--
---------------------------------------------------------------------------
Kingsly At Users Dot SourceForge Dot Net -- http://kingsly.org/
---------------------------------------------------------------------------
-------------- next part --------------
A non-text attachment was scrubb...
2006 Dec 30
0
RE: CentOS Digest, Vol 23, Issue 30
...gateways.
(Aleksandar Milivojevic)
8. Fwd: [CentOS] Fwd: How to add a route to a network via 2
gateways. (Indunil Jayasooriya)
9. Re: How to change NIC alias? (Linux Man)
10. logrotate: how to email logs with mutt? (M. Fioretti)
11. Re: logrotate: how to email logs with mutt? (Kingsly John)
12. Re: CentOS 4.5 and CentOS 5.0 News (William L. Maltby)
13. Re: CentOS 4.5 and CentOS 5.0 News (William L. Maltby)
14. Re: CentOS 4.5 and CentOS 5.0 News (William L. Maltby)
15. Re: logrotate: how to email logs with mutt? (M. Fioretti)
16. Re: CentOS 4.5 and CentOS 5.0 News (...
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'...
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