search for: webber

Displaying 20 results from an estimated 28 matches for "webber".

Did you mean: weber
2006 Jan 06
3
Installing Java 1.4.2
For scalix on Centos the Scalix forum provides instructions for convincing Scalix that Centos is Redhat: http://www.scalix.com/community/viewtopic.php?t=516&highlight=centos I am up to the point of getting Java JDK1.4.2 installed. I did a: yum list|grep "java" and got: gcc-java.i386 3.4.4-2 installed java-1.4.2-gcj-compat.noarch
2019 Feb 25
7
Problem with mdadm, raid1 and automatically adds any disk to raid
...count=1024 dd if=/dev/zero of=/dev/sdX bs=512 count=1024 mdadm --zero-superblock /dev/sdX Then I wiped each partition of the drives using fdisk. Now every time I start fdisk to setup a new set of partitions I see in /var/log/messages as soon as I hit "W" in fdisk: Feb 25 15:38:32 webber systemd: Started Timer to wait for more drives before activating degraded array md2.. Feb 25 15:38:32 webber systemd: Started Timer to wait for more drives before activating degraded array md1.. Feb 25 15:38:32 webber systemd: Started Timer to wait for more drives before activating degraded arr...
2019 Feb 25
0
Problem with mdadm, raid1 and automatically adds any disk to raid
...sdX bs=512 count=1024 > mdadm --zero-superblock /dev/sdX > > Then I wiped each partition of the drives using fdisk. > > Now every time I start fdisk to setup a new set of partitions I see in > /var/log/messages as soon as I hit "W" in fdisk: > > Feb 25 15:38:32 webber systemd: Started Timer to wait for more drives > before activating degraded array md2.. > Feb 25 15:38:32 webber systemd: Started Timer to wait for more drives > before activating degraded array md1.. > Feb 25 15:38:32 webber systemd: Started Timer to wait for more drives > befor...
2009 May 06
6
by-group processing
...E 3 24 46550 I 7 I know that I can use > tapply ( data $ N , data $ ID , max ) 45900 46550 49270 7 7 3 > to get the values of the maximum N for each ID, but how is it that I can find the index of these values to subsequently use to subscript data? -- maxine-webber
2011 Feb 21
3
multiple plots using a loop
Dear R users, I am trying to write myself a loop in order to produce a set of 20 length frequency plots each pertaining to a factor level. I would like each of these plots to be available on the same figure, so I have used par(mfrow = c(4, 5)). However, when I run my loop below, it produces 20 plots for each factor level and only displays the last factor levels LF plots. I'm fairly new to
2001 Aug 13
0
(no subject)
...to be usw-sf-list1.sourceforge.net Received: from localhost ([127.0.0.1] helo=usw-sf-list1.sourceforge.net) by usw-sf-list1.sourceforge.net with esmtp (Exim 3.16 #1 (Debian)) id 14O2Bn-0005EI-00; Wed, 31 Jan 2001 10:41:07 -0800 Received: from h24-65-192-120.cg.shawcable.net ([24.65.192.120] helo=webber.adilger.net) by usw-sf-list1.sourceforge.net with esmtp (Exim 3.16 #1 (Debian)) id 14O2Be-00058T-00 for <nfs@lists.sourceforge.net>; Wed, 31 Jan 2001 10:40:58 -0800 Received: (from adilger@localhost) by webber.adilger.net (8.11.2/8.11.1/Debian 8.11.0-6) id f0VIeSE02823; Wed, 31 Jan 2001...
2011 Mar 08
4
minimum distance between line segments
Dear R helpers, I think that this may be a bit of a math question as the more I consider it, the harder it seems. I am trying to come up with a way to work out the minimum distance between line segments. For instance, consider 20 random line segments: x1 <- runif(20) y1 <- runif(20) x2 <- runif(20) y2 <- runif(20) plot(x1, y1, type = "n") segments(x1, y1, x2, y2)
2006 Sep 29
1
Feature Request Creation date/time
Hello, I use rsync to copy personal data to various different machines for backup purposes and enjoy the robustness of the copy process. I was wondering if it was possible to add the option for rsync to copy the creation date and time as well as the modification time. This is really just a request for 'completeness'. When copying personal files it's useful to know when the orginal
2011 Feb 16
2
distance between consecutive points
Dear R users, I have two coloumns of data, say x and y, referring to a list of points in 2D space. I am trying to develop a code that will give me the distances (using Pythagoras) between consecutive points (xi,yi) and (xi+1,yi+1). So far I have come up with the following: for (i in 1:length(x)) d<-sqrt((x[i+1]-x[i])^2+(y[i+1]-y[i])^2) For example, if I use the two points (note, I have
2011 Mar 08
3
allocating factor levels
Dear R users, I am working on allocating the rows within a dataframe into some factor levels.Consider the following dataframe: Start.action Start.time 1 Start.setting 2010-12-30 17:58:00 2 Start.setting 2010-12-30 18:40:00 3 Start.setting 2010-12-31 22:39:00 4 Start.setting 2010-12-31 23:24:00 5
2011 Jan 26
6
Multiple Concurrent IMAP Connections For Same User
Hi I've been using courier for some time, but have just built a new box and am using dovecot (V1.2.9), Ubuntu 10.04LTS. I have a question regarding multiple concurrent imap connections and how to get dovecot to behave in the same way that courier does. I have searched the wiki, but find little relevant to my specific issue. Courier-Imap Behaviour If I have thunderbird pointed at the
2007 Apr 01
0
odium edinburgh
...short and over in the long run Get in Monday don't regret later You wanna experience this one !! "I want to move as quickly as I can, but some of the coaches we're might be -- with three 20-win seasons -- and 43-53 in the Big Ten. He was under contract ,000 to ex-Wolverines Chris Webber, Maurice Taylor, Robert Traylor and Nash said. ''They played with a lot of heart and energy and we weren't. So I ----- Original Message ----- From: "Pearl Tompkinss" <eedujf at huisarts.com> To: <r-help at stat.math.ethz.ch> Sent: Thursday, March 22, 2007 8:27...
2011 Mar 24
1
extracting file names
Dear R users, I am trying to figure out a way to extract the original file name of a .DAT (e.g., IC48.DAT) file imported into R using the file.choose() function, i.e., dat <- read.table(file.choose(), header = FALSE) The reason I would like to do this is to use that file name to name an output file, thus if I had the file name, e.g., file.name <- IC48 # then I do a bunch of stuff to dat
2003 Feb 13
0
Did something change from 7.2 to 8.0 involving pxelinux?
...nyone seen this before? If so, what am I missing here? BTW, if you know the answers to my problem in the first paragraph (nfs accessable dvrnet.img), please let me know. I tried changing "dd" to "dd=/somepathto/dvrnet.img, but that effort got me no where. Ideas??? thx... -- J.C. Webber III Unix System Administration Technical Lead 408-974-0346 (voice) 408-974-9547 (fax) 408-425-3179 (cell) jcw at apple.com (work) jcw at kingoblio.com (home)
2003 Feb 14
0
How do you convert vmlinux to vmlinuz?
...vmlinux file into a vmlinuz file? file vmlinux vmlinux: ELF 32-bit LSB executable, Intel 80386, version 1, statically linked, not stripped file vmlinuz vmlinuz72: x86 boot sector Please cc my email address if you reply cause I don't always catch all these posts to the list. thx... -- J.C. Webber III Unix System Administration Technical Lead 408-974-0346 (voice) 408-974-9547 (fax) 408-425-3179 (cell) jcw at apple.com (work) jcw at kingoblio.com (home)
1997 Jul 15
0
resetting printer after job removal
...d things to LPD System: RedHat Linux 4.2 (kernel 2.0.30) Machine: Pentium 133, 64 MB RAM, 4 GB SCSI disk Thanks for any idea. Celso. Stolen from an Internet user: "f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng !" ------------------------------------------------------ | Celso Kopp Webber | | e-mail: celsinho@inf.ufsc.br | | | | Federal University of Santa Catarina | | Florianopolis-SC Brazil | --------------------------------------------...
2005 Sep 15
1
Partial files cause: error in rsync protocol data stream (code 12) at io.c(584)
Hello, I am wondering if any of you have any ideas for what I am experiencing. I use Rsync over a local network to backup files from a laptop to my main PC which is running the server as a service. These are both Windows 2000 machines running Cygwin 1.5.18-1 and Rsync 2.6.6. It works fine unless I turn on the partial file option (--partial) and then try to resume an interrupted copy. This is
2003 Jan 07
0
Your Enterprise Java/J2EE Architect Requirement
...2002 Developing Web Applications with Vignette 6.0 and WebLogic - 2001 Developing Enterprise Applications with Vignette StoryServ - 2000 Developing Enterprise Applications with BEA WebLogic 5.1 - 2000 Java for Gurus (B. Werner course) - 1999 XML for B2B Communication (D. Webber course) - 1999 Java Design Patterns & Idioms for Scalable Architecture - 1999 Java Design & Development with BEA WebLogic App Server - 1999 Rule-Based programming Advisor/J (ActiveWorks/WebMethods) - 1999 Building Rational Rose?98 Functional COM Extensions - 1998...
2001 Aug 13
0
(no subject)
...ne.cse.unsw.edu.au> Cc: ext3-users@redhat.com, nfs@lists.sourceforge.net Subject: Re: [NFS] Re: Is ext3 kernel nfsd friendly? In-Reply-To: message from =?iso-8859-1?Q?Augusto_C=E9sar_Radtke?= on Monday January 29 References: <20010129095316.D11607@redhat.com> <200101291849.f0TInOk15913@webber.adilger.net> <20010129174821.A4340@conectiva.com> X-Mailer: VM 6.72 under Emacs 20.7.2 X-face: [Gw_3E*Gng}4rRrKRYotwlE?.2|**#s9D<ml'fY1Vw+@XfR[fRCsUoP?K6bt3YD\ui5Fh?f LONpR';(ql)VM_TQ/<l_^D3~B:z$\YC7gUCuC=sYm/80G=$tt"98mr8(l))QzVKCk$6~gldn~*FK9x 8`;pM{3S8679sP+MbP,72...
1997 Jul 15
3
How to write a printcap entry for remote printer
I am sharing some printers attached to Win95 boxes, and would like to be able to do more than connect from Linux with smbclient and print via translate. I would like to be able to specify a printcap entry for these so as to be able to print from pine or lynx or Netscape (when I get X running here at work). I haven't found anything in Samba docs or LDP docs yet to tell me how to write such