Displaying 20 results from an estimated 1000 matches similar to: "Is cp then mv the default?"
2007 Nov 15
3
How to make rsync faster?
I manage 250+ redhat linux boxes. The boxes are all setup the same way.
On a daily basis, we sync the app directory which is about 30gb out to
all hosts. The daily delta is actually less than 1gb, but since I can't
be sure if any individual box was tempered during the day, I always do a
full sync. On a monthly basis, we run with "--delete" to clean out the
stale files on the hosts.
2008 May 12
2
Collection of lm()s
Hello,
I would like to create a subscriptable collection (presumably a list)
of lm() models.
I have a data frame DX containing 6 groups of data. The general idea
is (NOT RUN) ...
for (i in 1:6)
{ DXS = subset( DX, <whatever>);
LMX[ i] = lm( <formula>, data = DXS);
}
Now access model results by subscript ... e.g. coefficients( LMX[
2]). Or would it be [[ 2]]?
I
2010 Jul 27
0
Command line not conform with mv/cp convention
This may not be regarded as a bug, but it actually affects and is sometimes
boring.
Suppose *foo* and *bar* are directories. When someone types:
*rsync foo/ bar*
rsync will sync foo/* into bar/
However, if he/she types:
*mv foo/ bar*
mv will move foo into bar/ and cp behaves like mv
I think the trailing / shouldn't matter so much. What matters should be the
asterisk after /
This is
1999 Mar 22
4
Bind failed on port 137
Has anyone had this one?
My log.nmb file gives:
1999/03/22 11:29:48 netbios nameserver version 1.9.18p10 started
Copyright Andrew Tridgell 1994-1997
1999/03/22 11:29:49 becoming a daemon
Added interface ip=10.1.7.1 bcast=10.1.255.255 nmask=255.255.0.0
bind failed on port 137 socket_addr=10.1.7.1 (Address already in use)
make_subnet: Failed to open nmb socket on interface 10.1.7.1 for port 137.
2001 Mar 05
1
Socket addr error in the smbd start - HPUX
Mrs,
I´m a Brazilian and i don´t speak english very well, but i need try , ok
.
I need your help.
Well, i want install the samba 2.0.7 in HP-UX 10.20. The install process is
not completely ok, but install.
This is the message in the install process :
_______________________________________
/var/tmp/AAAa23547/catalog/samba/samba-ROOT/configure[101]: Syntax error at
line 129 :
2003 Dec 08
1
trouble with predict.l1ce
Dear R-help,
I am having trouble with the predict function in lasso2. For example:
> data(Iowa)
> l1c.I <- l1ce(Yield ~ ., Iowa, bound = 10, absolute.t=TRUE)
> predict (l1c.I) # this works is fine
> predict (l1c.I,Iowa)
Error in eval(exper,envir, enclos) : couldn't find function "Yield"
And I have similar trouble whenever I use the newdata argument in
2007 Sep 14
6
Spam?
Hey Guys,
I just joined this list a couple days ago...what''s up with all the spam?
I maintain about 8 or so googlegroups lists and have never received any
<cross fingers>. Is this something to (unfortunately) look forward to?
--
______________________________________________________________
Clayton Dukes
______________________________________________________________
2014 Dec 15
2
need guidance on getting started...again
Hello,
It's been about 15 years since I've enjoyed working in the Unix space, and I
am trying to reintegrate myself. A few things have changed in the
intervening years. I've installed the first Centos6 iso without too much
difficulty, but I am rusty on commands and such. It appears the install
doesn't install mans so would somebody suggest a way to find and install
them. It
2014 Dec 15
2
need guidance on getting started...again
Thanks, Mark. Um, how's about from the commandline or how do I get, I guess we're still using X11, windows to load.
Sorry, :<}}}
Clayton
>-----Original Message-----
>From: centos-bounces at centos.org [mailto:centos-bounces at centos.org] On
>Behalf Of Mark LaPierre
>Sent: Sunday, December 14, 2014 5:50 PM
>To: centos at centos.org; Mark LaPierre
>Subject: Re:
2009 Aug 17
2
Newbie that don't understand R code
I got some R code that I don't understand.
Question as comment in code
//where is t comming from, what is phi inverse
rAC <- function(name, n, d, theta){
#generic function for Archimedean copula simulation
illegalpar <- switch(name,
clayton = (theta < 0),
gumbel = (theta < 1),
frank = (theta < 0),
BB9 = ((theta[1] < 1) | (theta[2] < 0)),
GIG = ((theta[2] < 0) |
2014 Dec 15
3
How serious are we about not wanting to see...
Redhat in centos? I type help and the first line says redhat. Are we
paranoid about red..t?
Clayton
You can tell the caliber of a man by his gun--c. kirkwood
2023 Mar 10
1
linux-6.2-rc4+ hangs on poweroff/reboot: Bisected
On Fri, Mar 10, 2023 at 10:26?AM Chris Clayton <chris2553 at googlemail.com> wrote:
>
> Hi.
>
> Is it likely that this fix will be sumbmitted to mainline during the ongoing 6.3 development cycle?
>
yes, it's already pushed to drm-misc-fixed, which then will go into
the current devel cycle. I just don't know when it's the next time it
will be pushed upwards, but it
2023 Feb 20
1
linux-6.2-rc4+ hangs on poweroff/reboot: Bisected
On Mon, Feb 20, 2023 at 11:51 AM Chris Clayton <chris2553 at googlemail.com> wrote:
>
>
>
> On 20/02/2023 05:35, Ben Skeggs wrote:
> > On Sun, 19 Feb 2023 at 04:55, Chris Clayton <chris2553 at googlemail.com> wrote:
> >>
> >>
> >>
> >> On 18/02/2023 15:19, Chris Clayton wrote:
> >>>
> >>>
> >>> On
2014 Dec 15
2
How serious are we about not wanting to see...
Personally, I am agnostic. I've just read thru Centos documentation that
there is a big effort to remove all upstream personalities from Centos.
Personally, I don't see why RH is doing this. I would think that it
undermines RH. But I'm still new/old to all of this. It used to be the big
argument was between Unix from Berkeley(4.? I think) and SysIII/V. Always
always battles for turf.
2009 Oct 20
1
TukeyHSD no longer working with aov output?
I can prove I've done this before, but I recently installed Rexcel (and it
was easiest to reinstall R and some other bits to make it work) and now its
no longer working.
Before I would do an ANOVA and a tukey post-hoc like this:
>data1.aov=aov(result~factor1*factor2, data=data1)
then...
>TukeyHSD(summary(data1.aov))
and it would give me a nice tukey table of all the pairwise
1999 May 29
2
Unexpected behaviour of read.table
When reading comma-delimited files as saved from a spreadsheet (unfortunately
many of my scientific collaborators give me these) in read.table(), missing
values are spotted most of the time. Unfortunately when comma is the first
character on the line it gets it wrong. For example, reading the file
1,,3
,5,6
,8,9
with
read.table("test.dat", header=F, sep=",")
R gives
2006 Jul 19
3
color picker
Is there any plugin or ajax controls for picking colors?
Was looking around
Couldn''t find anything
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060719/cb4bc40f/attachment-0001.html
2020 Mar 02
3
Adding accelerator tables to existing linked DWARF files
I'd like it... Adrian? Fred?
-eric
On Mon, Mar 2, 2020 at 3:44 PM Greg Clayton <clayborg at gmail.com> wrote:
> Yes. I am fine with adding ELF support to llvm-dsymutil if that is the way
> people think we should go?
>
> On Mar 2, 2020, at 3:33 PM, Eric Christopher <echristo at gmail.com> wrote:
>
> Which seems like what we'd want dsymutil to do anyhow?
>
2011 Jun 10
1
smoothScatter function question and adding a legend
Hello,
I have a few questions, regarding the smoothScatter function.
I have a scatter plot with more than 500,000 data points for
two samples. So, I am wanting to display the density in colors
to convince people that my good correlation coefficient is not
due to an "influential point effect" and plus, I also want to make
my scatter plot look pretty. Anyway ...
I have been able to
2006 May 26
3
FreeBSD boot loader on VT-x based Xen system
Folks --
I''m trying to run FreeBSD 6.0 on a VT-x based Xen system. I''m
experiencing a problem where the boot loader is crashing before the
FreeBSD kernel (proper) is loaded.
The sequence of operations is that the VMX domain is constructed, the
BIOS is executed, GRUB loads, I type the instructions to load FreeBSD
(a boot loader) and that code begins to execute and then