search for: armsbi

Displaying 3 results from an estimated 3 matches for "armsbi".

Did you mean: armsby
2003 Oct 29
2
OpenSSH and Redhat 8
John, The following steps should work for you (or anyone buildling on a RedHat box): 1) Get the official OpenSSH source RPM from ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/rpm/SRPMS/openssh-3.7.1p2-1.src.rpm 2) Do 'rpmbuild --rebuild ./openssh-3.7.1p2-1.src.rpm' from where you saved the file. 3) This should create the following files in /usr/src/redhat/RPMS/i386:
2007 Mar 30
1
Trouble installing package 'sp' in R 2.4.1
Hi all, I just installed R 2.4.1 and tried to install the package 'sp' working down from the 'Packages' menu in the R GUI. The package would not install and I got the following message: "trying URL 'http://cran.us.r-project.org/bin/windows/contrib/2.4/sp_0.9-10.zip' Error in download.file(url, destfile, method, mode = "wb") : cannot
2008 May 26
1
To draw observation [m, n] from 20 data frames named frame1, ... , frame20
Hi all, I have 20 data frames, named frame1, ... , frame20. Each data frame has the dimension 20x5. I need to build a function that calls out the observation in Row 1, Col 2 from all 20 data frames and places it in a vector of length 20. I have tried the following code: vect <- rep(0,20) for(i in 1:20){ vect[i] <- paste("frame",i,"[1,2]",sep="") } The