similar to: Drives Not Recognized on Dell Poweredge 1550 CentOs4 install

Displaying 20 results from an estimated 1000 matches similar to: "Drives Not Recognized on Dell Poweredge 1550 CentOs4 install"

2006 Nov 11
1
FW: [tclug-list] Drives Not Recognized on Dell Poweredge 1550 CentOs install
The raid card is an Adaptec 2100S. -----Original Message----- From: Josh Paetzel [mailto:josh at tcbug.org] Sent: Saturday, November 11, 2006 9:35 AM To: tclug-list at mn-linux.org; pjcrump at bitstream.net Subject: Re: [tclug-list] Drives Not Recognized on Dell Poweredge 1550 CentOs install On Saturday 11 November 2006 01:20, Phillip Crump wrote: > I have a new (used)Dell Poweredge 1550
1997 Sep 26
3
kerneld and module security
Here''s a neat trick for a machine running kerneld: not_root@machine$ /sbin/ifconfig isofs loads ''/lib/modules/(kernel version here)/fs/isofs.o''. /sbin/ifconfig when run as non-root queries a network interface for its configuration. However, if the interface is unknown it also tries to load the module that implements that interface using the name of the interface as
2018 Apr 30
1
Overlay line on a bar plot - multiple axis
Hi Miluji, Using Jim's interpretation of your desired graph, you could do it in ggplot2 using your dat DF by: ggplot() + geom_bar(data=dat, aes(x=week,y=count,fill=city),stat="identity",position="dodge") + coord_flip() + geom_line(data=dat, aes(x=week, y=mean_tmin)) There would still need some work to be done to get the weekly mean into a legend, but it is
2007 May 18
2
Problem loading library
Hi, I have a fresh install of R 2.5.0, I then installed the pls package. When trying to load this package I get: > library(pls) Attaching package: 'pls' The following object(s) are masked from package:stats : loadings > Searches show this to most often be related to attaching data, but I haven't got any data in here: this is the first command given
2007 Aug 10
1
Subsetting by number of observations in a factor
Hi, I generally do my data preparation externally to R, so I this is a bit unfamiliar to me, but a colleague has asked me how to do certain data manipulations within R. Anyway, basically I can get his large file into a dataframe. One of the columns is a management group code (mg). There may be varying numbers of observations per management group, and he would like to subset the dataframe such
2005 Oct 29
2
AIC7901 RAID320 with CENTOS4 not recognized
An INTEL Server motherboard model SE7501BR2 with an onboard Adaptec AIC7901 controller (with HostRAID) is not being recognized by CENTOS 4. The AIC79xx driver loads correctly, however it does not "see" the fact that I used the HostRAID onboard software to create a RAID 1 set. I went to the INTEL site and only found a driver for RHEL 3.0 and I was unable to find a driver on the adaptec
2007 Aug 29
2
Recoding multiple columns consistently
Hi, I have a dataframe that contains pedigree information; that is individual, sire and dam identities as separate columns. It also has date of birth. These identifiers are not numeric, or not sequential. Obviously, an identifier can appear in one or two columns, depending on whether it was a parent or not. These should be consistent. Not all identifiers appear in the individual column - it is
2004 Feb 13
1
PXELinux; Question regarding UNDI
I have already a running automated Deployment system using pxelinux and tftd and a 1,44 floppy image (memdisk) with ms-dos and 3-com undi drivers. The whole thing is working good, and i am not unhappy about it. But, the dos image solution has a few disadvanatages, because i cannot find a mtftp client for ms-dos to deploy a lot of system at the same time. Under linux such client exists, but i
2023 Jul 08
1
Getting an error calling MASS::boxcox in a function
Try this for your function: BoxCoxLambda <- function(z){ y <- z b <- boxcox(y + 1 ~ 1,lambda = seq(-5, 5, length.out = 61), plotit = FALSE) b$x[which.max(b$y)] # best lambda } ***I think*** (corrections and clarification strongly welcomed!) that `~` (the formula function) is looking for 'z' in the GlobalEnv, the caller of apply(), and not finding it. It finds
2005 Oct 31
1
CentOS and older megaraid.
2023 Jul 08
1
Getting an error calling MASS::boxcox in a function
No, I'm afraid I'm wrong. Something went wrong with my R session and gave me incorrect answers. After restarting, I continued to get the same error as you did with my supposed "fix." So just ignore what I said and sorry for the noise. -- Bert On Sat, Jul 8, 2023 at 8:28?AM Bert Gunter <bgunter.4567 at gmail.com> wrote: > Try this for your function: > >
2023 Jul 08
1
Getting an error calling MASS::boxcox in a function
Hi, Firstly, apologies as I have posted this on community.rstudio.com too. I want to optimise a Box-Cox transformation on columns of a matrix (ie, a unique lambda for each column). So I wrote a function that includes the call to MASS::boxcox in order that it can be applied to each column easily. Except that I'm getting an error when calling the function. If I just extract a column of the
2011 Jun 28
1
CentOS4 desktop has stopped recognizing removable media - haldaemon problem?
USB sticks and cameras used to pop right up on my desktop. Now they don't. I've checked the Gnome "Drives and Media Preferences" and nothing has changed -- I have "Mount removable media when inserted" etc. (Tried toggling it off and back on, no effect.) I've logged out and back in, even rebooted. /var/log/messages shows the devices are being recognized by udev:
2007 Aug 29
3
OT: Suggestions for RAID HW for 2 SATA drives in Dell PowerEdge SC
Looking at the Dell PowerEdge 440SC web page for Colombia. The box will have two 250 GB SATA drives. The HD controller is: SAS 5IR SAS,Internal Raid Adapter (SAS5IR) for HD Configuration) the options are: (1) Add-in SAS5iR (SATA/SAS Controller)-RAID 0 (ASASR0) (2) Onboard SATA, 2 Drives connected to Onboard SATA Controller No RAID (MST2) (3) Add-in SAS5iR (SATA/SAS Controller) which supports
2013 Aug 12
6
3TB External USB Drive isn't recognized
We have a 3TB external USB drive that I am trying to attach to some CentOS5 servers. I have tried an older Dell PE1950 and a newer R310 but neither one seems to be able to read the drive. It works no problem on windows servers/workstations and I was able to format with NTFS. I know there are different methods for formatting large disks but this one doesn't even seem to show up as a /dev/
2023 Jul 08
1
Getting an error calling MASS::boxcox in a function
Dear Ron and Bert, First (and without considering why one would want to do this, e.g., adding a start of 1 to the data), the following works for me: ------ snip ------ > library(MASS) > BoxCoxLambda <- function(z){ + b <- boxcox(z + 1 ~ 1, + lambda = seq(-5, 5, length.out = 101), + plotit = FALSE) + b$x[which.max(b$y)] + } > mrow <- 500
1999 Jan 25
2
Status on Poweredge Dell with Raid
I know this is off-topic to the list, but someone asked me to make the information that I garnered about Dell Poweredge systems available to the list. So, here it is. Basically, after a search on dejanews, I came across this article: http://x5.dejanews.com/getdoc.xp?AN=430135686&CONTEXT=917266543.1696071777&hitnum=19 In it, someone states that there are drivers for the PERC RAID
2023 Jul 08
1
Getting an error calling MASS::boxcox in a function
Thanks John. ?boxcox says: ************************* Arguments object a formula or fitted model object. Currently only lm and aov objects are handled. ************************* I read that as saying that boxcox(lm(z+1 ~ 1),...) should run without error. But it didn't. And perhaps here's why: BoxCoxLambda <- function(z){ b <- MASS:::boxcox.lm(lm(z+1 ~ 1), lambda = seq(-5, 5,
2005 Dec 22
2
Dell PowerEdge 6800 hangs from time to time with dom0 only
It turns hard to make XEN 3.0 running on my middle-sized server. Now when XEN 3.0 is released I first successfully put it on several PCs and then decided to probe it on SMP and PAE enabled Dell PowerEdge 6800 server. And experienced intermittent hangs just after dom0 comes up. The [login:] prompt comes up and the server hangs completely for a while and in some 2-10 minutes releases just to let me
2023 Jul 08
1
Getting an error calling MASS::boxcox in a function
Hi Bert, On 2023-07-08 3:42 p.m., Bert Gunter wrote: > Caution: This email may have originated from outside the organization. Please exercise additional caution with any links and attachments. > > > Thanks John. > > ?boxcox says: > > ************************* > Arguments > > object > > a formula or fitted model object. Currently only lm and aov objects