Displaying 20 results from an estimated 10000 matches similar to: "bash file direct execution"
2005 Aug 05
2
sendmail refusing incoming connections from outside
Hello.
I am scratching my head about sendmail for a simple thing:
I have a CentOS 4 box on which I would like to receive e-mails.
when I type 'telnet localhost 25' I can connect successfully to the sendmail
service.
Now if I type: 'telnet 192.168.0.30 25' on the same host the connection is
refused.
It also refuses connections from another host.
I have edited the
2004 Oct 14
5
another yum question
Hello centos community,
I have a personal repository with self-made RPMs, and i need to include
this repository to yum.conf. But i've noticed that yum configuration is
overwritten when yum is updated. I can't update yum.conf manually on
my servers each time yum is updated ...
Is anyone have an idea ?
Thank you.
--
Martin
2004 Oct 18
1
centos-yumconf purpose
Hello.
I did try to find out some information about centos-yumconf, but I didn't
find any.
I would like to know what centos-yumconf rpm is made for and what it does
(just overwrite the yum.conf file, or copy things from the original and
create a new one ?).
I dont' really understand the necessity of this package, because I thought
that the version upgrade was made through the $releasever
2008 Feb 26
2
Kalman Filter
Hi
My name is Vladimir Samaj. I am a student of Univerzity of Zilina. I am
trying to implement Kalman Filter into my school work. I have some problems
with understanding of R version of Kalman Filter in package stats( functions
KalmanLike, KalmanRun, KalmanSmooth,KalmanForecast).
1) Can you tell me how are you seting the initial values of state vector in
Kalman Filter? Are you using some method?
2018 Jan 04
2
format integer numbers with leading 0
Dear R-er,
I would like format integer number as characters with leading 0 for a
fixed width, for example:
1 shoud be "01"
2 shoud be "02"
20 should be "20"
Now I use:
x <- c(1, 2, 20)
gsub(" ", "0", format(x, width=2))
But I suspect more elegant way could be done directly with format
options, but I don't find.
Thanks a lot
Marc
2008 Nov 28
6
How to delay failed ssh auth
Hi!
I need to delay failed ssh password authentication as an additional
measure against brute force ssh attacks. I understand, that shoud be
accomplished through pam, but googling gave me no example. I have CentOS
5.2.
--
Veiko Kukk
2005 Nov 28
6
How define global Variable?
Hello,
I try to define a global variable.
My example:
R> a <- "old"
R> test <- function () { a <- "new" }
R> test()
R> a # shoud be "new"
This doesn't work. I would like to modify the variable "a" in a
procedure. How can I do that.
Thank you for helping.
Sven Kn侟ppel (Germany-Berlin)
2005 Jul 27
3
how to overlook the zero in the denominator
Dear R users:
I have two set of data, as follow:
x<-c(0,0,0.28,0.55,1.2,2,1.95,1.85,
1.6,0.86,0.78,0.6,0.21,0.18)
y<-c(0,0,0,0.53,1.34,1.79,2.07,1.88,
1.52,0.92,0.71,0.55,0.32,0.19)
i<-1:length(x)
I want to sum each (x[i]-y[i])^2/x[i] together,
like:
>Sum <-sum((x[i]-y[i])^2/x[i])
>Sum
[1] NaN
Because the denominator shoud not be zero.
So I want to overlook those
2013 Feb 04
2
Version 5.01 not passing kernel command line args to memtest86+as it can understand
Hello,
I'm trying to pass the serial port options to memtest86+ using
Syslinux 5.01 but is not working. Debugging the memtest86+,
the check at main.cpp function static void parse_command_line(void)
if (*OLD_CL_MAGIC_ADDR != OLD_CL_MAGIC)
return;
Is being evaluated to true. What should I do? There is a way to
instruct memtest to use the "old way" to pass
2006 Jul 25
2
Cron not sending e-mails anymore
Hi,
I have a cronjob that executes a script that has some echo statements
in it and the commands in it also generate output (it copies files,
reloads services, etc...).
Recently, cron stopped sending its output by e-mail. I restarted cron,
without success. Any ideas where I shoud start to debug this?
Regards,
Ugo
2003 Feb 19
5
Subpopulations in Complex Surveys
Hi,
is there a way to analyze subpopulations (e.g. women over 50, those who
answered "yes" to a particular question) in a survey using Survey package?
Other packages (e.g. Stata, SUDAAN) do this with a subpopulation option to
identify the subpopulation for which the analysis shoud be done. I did not
see this option in the Survey package. Is there another way to do this?
2008 Sep 17
2
modifying patterns in a matrix
Dear R-users,
I have some very simple data where 1's represent events and zeroes non-events, e.g.
temp <- rbind(c(0,1,0,0,1,1,1,0), c(0,0,0,1,0,0,0,0))
For each row in the matrix, I would like to replace a singelton event by a 0. That is, any 1 surrounded by zeroes (010) should be replaced by a zero (000). Sequences of 1's should be left unchanged.
So the modified matrix shoud look
2010 Sep 30
3
Kernel Panic When restarting the server
Hello,
I'm getting a KErnel Pannic every time i restart the server, what could be
happening?
I just make: "shutdown -r now" and the server gets Kernel Panic. I'have to
go on site and press the power button
Here you have my sotware versions:
Asterisk 1.4.24.1
DAHDI Tools Version - 2.1.0.2
DAHDI Version: 2.1.0.4
libpri version: 1.4.10.1
WANPIPE Release: 3.5.4
IS there
2019 Aug 11
2
doveadm / vsize
Hi,
i want to keep track of user mailbox size,
I'm using
doveadm mailbox status -u <user> vsize INBOX
for a given mailbox this is under reporting ( by a lot)
is this recursive? what shoud i be using to get an accurate disk usage metric?
thanks
Paul.
--
-------------------------
Paul Macdonald
IFDNRG Ltd
Web and video hosting
-------------------------
t: 0131 5548070
m:
2008 Nov 09
2
Delete rows from matrix having at least one zero value
Hi,
I have a further question about matrix manipulation.
Imagine the following two matrices:
> test
[,1] [,2] [,3] [,4]
[1,] 1 0 6 4
[2,] 2 5 7 5
[3,] 3 6 8 6
[4,] 4 0 0 0
> matrix(is.element(test,0), ncol=4)
[,1] [,2] [,3] [,4]
[1,] FALSE TRUE FALSE FALSE
[2,] FALSE FALSE FALSE FALSE
[3,] FALSE FALSE FALSE FALSE
[4,] FALSE
2009 Mar 02
2
Changes in specs for routes in rspec 1.1.99.x
Trying the next release of rspec, I have had to make changes in the
existing specs for routing.
I have written an script with sed that makes this automatically (two
files)
spec/upgrade.sed
================
/route_for/s/id => 1/id => "1"/g
/route_for.*create/s/== \(["''].*["'']\)/== {:path => \1, :method =>
:post}/
/route_for.*update/s/==
2007 Jul 30
2
HVM domain on NAS
Hi Users,
Is it possible to create an HVM domain on NAS location. Did anybody tried
this on RHEL5 ?
I create a HVM domain using a file disk "using dd with ext3 on this", but
what i want is to rooted the OS / on the NAS location directly and it shoud
be booted from that location.
Thanks in advance for any kind of suggestions.
-Trilok
_______________________________________________
2006 Aug 21
2
[LLVMdev] Recalculating live intervals
On 8/7/06, Chris Lattner <sabre at nondot.org> wrote:
>
> On Sun, 6 Aug 2006, Anton Vayvod wrote:
> > I'm developing a register allocator that works iteratively. It spills
> some
> > virtual registers on each iteration until all the rest have physical
> ones
> > assigned.
>
> Take a look at the linear scan allocator. It is also iterative: it uses
>
2005 Nov 06
1
[Bug 3244] exit status with large directories
https://bugzilla.samba.org/show_bug.cgi?id=3244
wayned@samba.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
Summary|crash with large directories|exit status with large
2005 Jan 10
3
Mixing portrait/landscape in a postscript file
Dear list,
I'm stuck with a little graphical problem. I'm generating several
lattice plots which are printed in a single postcript device opened by
> trellis.device(postscript, theme=canonical.theme("postscript",
color=F), file="an_phase2_graph.ps", paper="a4", pointsize = 10,
onefile=TRUE, horizontal=TRUE)
Everything works fine,but some of these