similar to: CentOS Wiki Contribution

Displaying 20 results from an estimated 700 matches similar to: "CentOS Wiki Contribution"

1999 Jun 24
2
Respond95 for Fax sending under win95/98
Hello, i'm using the respond-program to send faxes from the win-clients. Now i'm looking for the web-page, were this program is shown, because i've some trouble to reinstall this after an bigger crash. Perhaps someone can give me the URL of this or alternative programs to do an recipicient query on the win-clients befor sending the fax. Thanks 4 help, Yours, Oliver Grube
2010 Mar 01
3
Closing loop: How-to for NVIDIA driver on Xen Dom0
I had a couple comments on my proposal to write a how-to on NVIDIA on Xen Dom0: Marcus: I would rather prefer if you could take care of the current Xen articles on the wiki, first. They are quite outdated. --- I don't consider myself an expert on all things Xen. In reviewing the material on the CentOS Wiki regarding Xen, I felt the articles were pretty well done (even if they were
2015 Jun 30
1
wiki.centos.org/TipsAndTricks/VncHeadlessInstall
(Apologies for the potential duplicate post. My initial post had a smashed subject line. This post only adds the subject and this note.) I would like permission to edit this page. The changes I have in mind are: 1) It is not necessary to burn a CD/DVD to do a "headless" install in cases where the installed system has a monitor, but for some reason cannot support a graphical
2015 Aug 18
2
Russian wiki
Thanks a lot. 2015-08-19 1:39 GMT+06:00 Akemi Yagi <amyagi at gmail.com>: > On Tue, Aug 18, 2015 at 10:16 AM, Ilyas Arinov <arinov.ilyas at gmail.com> > wrote: > > Username changed to standards. > > > > I have 2 days in week to pedantically rewrite whole content until I can. > > > > Those (first 8-10 weeks): > > > > FrontPage > >
2011 Mar 31
1
Contributing to Wiki
Hello again, I want to contribute to the Wiki, in the "WebsiteVer2" section, My wikiuser name is JimWoods. Thanks
2015 Jun 30
0
c
I would like permission to edit this page. The changes I have in mind are: 1) It is not necessary to burn a CD/DVD to do a "headless" install in cases where the installed system has a monitor, but for some reason cannot support a graphical install directly. This can be caused by: a server that has too little memory to run a graphical install, or running the install in a virtual
2006 Sep 09
1
FAQs and Wiki
$TZ greetings. General questions: Should the FAQs on <http://www.centos.org/modules/smartfaq/index.php> be migrated into the wiki or should they stay where they are at the moment or should they be just duplicated into the wiki so they can be found at two places? If everbody (here) thinks that they should move into the wiki: Is there a possibility to get all questions and answers in one go?
2016 Apr 28
0
Interdependencies of variable types, logical expressions and NA
Hi Your script is not reproducible. Creating Check_U_0__Kd_1_2011 from Umsatz_2011 and Kunde01_2011 Error in ifelse(Kunden01[[Umsatz]] == 0 & Kunden01[[Kunde]] == 1, 1, 0) : object 'Kunden01' not found > This is interesting x <- c(NA, FALSE, TRUE) names(x) <- as.character(x) outer(x, x, "&") ## AND table <NA> FALSE TRUE <NA> NA FALSE
2013 Sep 02
3
Product of certain rows in a matrix
Hi, You could try: A<- matrix(unlist(read.table(text=" 1 2 3 4 5 6 7 8 9 9 8 7 6 5 4 3 2 1 ",sep="",header=FALSE)),ncol=3,byrow=FALSE,dimnames=NULL) library(matrixStats) ?res1<-t(sapply(split(as.data.frame(A),as.numeric(gl(nrow(A),2,6))),colProds)) ?res1 #? [,1] [,2] [,3] #1??? 4?? 10?? 18 #2?? 63?? 64?? 63 #3?? 18?? 10??? 4
2013 Sep 26
2
Sums based on values of other matrix
Dear all, I have a big problem: - I got two matrices, A and B - A shows identifies the value of B, however the values of B must be summed - For instance, 1 1 2 2 2 2 1 1 gives matrix a 3 4 2 1 1 1 2 2 gives matrix b Now the result for the value 1 would be 7 4 which are the rowsums of the values of matrix B given that matrix A has the value 1. How can I do this automatically? I
2011 Mar 25
1
FOG on CentOS Wiki contribution suggestion?
Hello, I'd like to contribute a page on using FOG (FOG is a Linux-based, free and open source computer imaging solution for Windows XP, Vista and 7 that ties together a few open-source tools with a php-based web interface. http://www.fogproject.org/) running on CentOS. Currently have 3 FOG servers deployed on CentOS covering a large workload using an existing Linux DHCP setup in a large
2003 Sep 20
3
conditional function definition?
Hi Folks, What is the best way to avoid a function being read in anew (and masking an exiting function) when a definition of it has already been established in R? Reason: Fernando Tusell and I are working up Schafer's 'CAT' for R (basically done now, just needs some cosmetic tidying up). This uses a function 'slice.index', present in S but not in the versions of R we were
2012 Aug 09
4
indexing in data frames
I'm still not fully understanding exactly how R is handling data frames, but am getting closer. Any help with this one will likely go a long way in getting me there. Let's say I have a data frame, let's call it "a". Within that data frame i have two variables, let's call them "b" and "c", where "b" is a single numeric value per observation,
2011 Jun 18
3
Unconditionally transfer files
Is there a way to make rsync unconditionally transfer files, i.e. create them anew even if the target already exists and is identical to the source ? rsync -I looks closer but still avoids transferring the files. -- Andr? Majorel http://www.teaser.fr/~amajorel/
2013 Jan 22
6
plot two time series with different length and different starting point in one figure.
Hello, I do have two different time series A and B, they are different in length and starting point. A starts in Jan, 2012 and ends in Dec, 2012 and B starts in March, 2012 and ends in Nov, 2012. How can I plot those two series A and B in the same plot? I.E., from Jan. 2012 - Feb, 2012, it would have one data point from A and from Mar, 2012-Nov, 2012, it would have two data points from A and B,
2016 Apr 28
4
Interdependencies of variable types, logical expressions and NA
Hi All, my script tries to do the following on factors: > ## Check for case 3: Umsatz = 0 & Kunde = 1 > for (year in 2011:2015) { + Umsatz <- paste0("Umsatz_", year) + Kunde <- paste0("Kunde01_", year) + Check <- paste0("Check_U_0__Kd_1_", year) + + cat('Creating', Check, 'from', Umsatz, "and", Kunde,
2003 Oct 21
5
run R under linux
Dear all, Our department uses the linux system and we are not allowed to submit job directly. We must make a batch to submit through "qmon". so, I make a foo.sh file, which only contains one line: nohup R --vanilla < foo.txt > foo.results foo is all my codes. It is a simulation of 200 times. I set the seed at the beginning. It is to estimate the success probability, which is
2017 Aug 09
7
Errors on an SSD drive
I am building a new system using an Kingston 240GB SSD drive I pulled from my notebook (when I had to upgrade to a 500GB SSD drive). Centos install went fine and ran for a couple days then got errors on the console. Here is an example: [168176.995064] sd 0:0:0:0: [sda] tag#14 FAILED Result: hostbyte=DID_BAD_TARGET driverbyte=DRIVER_OK [168177.004050] sd 0:0:0:0: [sda] tag#14 CDB: Read(10)
2008 Apr 21
3
No noht?
Am I correct in reading the code that there is no "noht" (turn off hyperthreading) option in Xen (except in powerpc)? This was a surprise to me as I've seen it documented in various places and I recently suggested it as a diagnostic to a customer. =================================== If Xen could save time in a bottle / then clocks wouldn't virtually skew / It would save every
2008 Aug 28
3
Upgrading R means I lose my packages
The title says it all. Does anyone know of a way to save your packages when you upgrade to a new version of R? This may seem petty, but I'm accumulating enough packages that having to download and install each of them anew every time I install a new version of R is rather of a pain. Ideally, I would like the new version of R to recognize the packages I've installed on the