similar to: [solved] Re: Set cpu_weight and cpu_cap at boot time

Displaying 20 results from an estimated 1000 matches similar to: "[solved] Re: Set cpu_weight and cpu_cap at boot time"

2007 May 17
0
Re: XEN on feisty running Windows XP
Hi, sorry - still no fix found. Regards, Roland On Thu, May 17, 2007 at 11:17:38AM +0100, gyndine wrote: > Hey Roland > Saw your email on the Xen forums, did you find a fix ?, having the same > problems myself on Feisty > > Aidan > > > > > Hi, > > i still want to install Windows XP in domU on a ubuntu-feisty dom0. Now the > Windows installer hangs at the
2007 Sep 28
0
transparency of one layer in multiple wireframe plot
Sorry sending this again - is anyone familiar with multiple transparent wireframe plots? I already checked the ?wireframe, but with no examples and as newcommer its hard to find out a correct code. If we set drape=F in the example: g <- expand.grid(x = 1:10, y = 5:15, gr = 1:2) g$z <- log((g$x^g$g + g$y^2) * g$gr) wireframe(z ~ x * y, data = g, groups = gr, scales = list(arrows
2008 May 21
0
Fwd: Re: opensuse10.3 host and windows XP guest via Xen/Vbx
-------- Original-Nachricht -------- Datum: Wed, 21 May 2008 18:12:59 +0800 Von: "Jon Ervine" <jon.ervine@gmail.com> An: "Jörg Kühne" <joerg.kuehne@gmx.net> Betreff: Re: [Xen-users] opensuse10.3 host and windows XP guest via Xen/Vbx 2008/5/21 "Jörg Kühne" <joerg.kuehne@gmx.net>: > Hello > > did anyone may made some experience with the
2007 Dec 10
0
[LLVMdev] llvm-config on windows
Hi, while porting a compiler for a custom language from OS X to Windows I found llvm-config is missing from LLVM on Windows. I tried the precompiled MingW binaries as well as compiling from source using the MSVC project but neither version comes with the tool. How can I get a working llvm-config on Windows? greetings, Jan -- Psssst! Schon vom neuen GMX MultiMessenger gehört? Der kann`s mit
2007 Aug 04
2
Problems using "lm" in combination with "predict"
Hello everybody, I'm trying to predict a linear regression model but it does not work. My Model: y = Worktime + Vacation + Illnes + Bankholidays My modelmatrix is of dimension 28x4 Then I want to make use of the function predict because there confidence.intervals are include. My idea was: mod <- lm(y~Worktime+Vacation+Illnes+Bankholidays) newdate=data.frame(x=c(324,123,0.9,0.1))
2007 Aug 16
1
use AnnBuilderSourceUrls with local path insted of ftp adress
Hallo everybody. I want to build my own GO package using the function GOPkgBuilder of AnnBuilder. It uses AnnBuilderSourceUrls to collect data from different ftp sites. These data are not complete for my organism, so I would like to change the ftp adresses to a local one. The changing itself is working but when I run the script I get the following Error: Error in
2007 Sep 25
1
10- fold cross validation for naive bayes(e1071)
Hallo! I would need a code for 10-fold cross validation for the classifiers Naive Bayes and svm (e1071) package. Has there already been done something like that? I tried to do it myself by applying the tune function first: library(e1071) tune.control <- tune.control(random =F, nrepeat=1, repeat.aggregate=min.,sampling=c("cross"),sampling.aggregate=mean, cross=10, best.model=T,
2007 Oct 05
2
Installing MS Train Simulator
Hello When I try to install MS Train Simulator the setup.exe program switches to full screen mode. This full screen mode hides all other installer windows. The window that asks me if I want to install Adobe and the window that asks me to replace CD1 with CD2 are not visible. Therefore it is necessary to guess what I should do during the installation and do the input blindly. The main
2007 Sep 27
3
different colors for two wireframes in same plot
Hello R, According to: g <- expand.grid(x = 1:10, y = 5:15, gr = 1:2) g$z <- log((g$x^g$g + g$y^2) * g$gr) wireframe(z ~ x * y, data = g, groups = gr, scales = list(arrows = FALSE), drape = TRUE, colorkey = TRUE, screen = list(z = 30, x = -60)) i have two wireframes in one plot. How could i change the color of the top - one to transparent (or only the grid).
2007 Jun 11
1
Starting R within an VBA makro
Hello everybody, at work I want to start R within an VBA program. First I calculate something in Excel 2003. After that I want to start within my VBA makro R wich should start an R file, say i.g, superplot.R which plots me the data well. So is it possible? Maybe something like that: sub test() 'calculate something start R superplot.R end test() Thank you so much. Kindly
2007 Jun 12
1
Problems with Vista, R 2.5.0 and function save
Hi everyone, I want to make use of the save function but it did not work. I'm using vista and R 2.5.0, winzip is installed too. Here's the code (from example ?save): > x <- runif(20) > y <- list(a = 1, b = TRUE, c = "oops") > save(x, y, file = "xy.Rdata") Fehler in gzfile(file, "wb") : kann Verbindung nicht ?ffnen Zus?tzlich:
2007 Sep 26
1
add points to wireframe
Hello R-classicist won't like the following question due to there's no minimal reproducible example and the question was posted already. Anyway I'm not able understand this rather complicated version of "add points to wireframe". what I have is matrix 3x2000 with a dem<-(x,y,z, coordinates) (not provided). with follwing code I want to produce the wireframe and add some
2007 Oct 12
2
Q-type factor analysis
Hallo! Is there a package in R that does Q-type factor analysis? I know how to do principal component analysis, but haven't found any application of Q-type factor analysis. Thx, Julia -- Psssst! Schon vom neuen GMX MultiMessenger geh?rt? Der kanns mit allen: http://www.gmx.net/de/go/multimessenger
2007 Nov 07
4
partially sum variable of a dataframe
Hello, A stupid question: I have an array with two columns, the first "a" acting as my index in 0.25 steps, the second one "b" the column of interest. How can i sum up "b" only for a specified window in "a" (as the window command for time series) a=seq(0,10,0.25) b=runif(41) c=data.frame(a,b) Sum up c if 3<a<5.25 How to do that? thanks marc --
2007 Oct 29
1
shading of curves with polygon
Hello again With the poylgon function it's possible to plot shaded areas under a curve. But somehow it connects the start and the endpoint of a line and fills whats between them. I would actually like to set the boarders of the shading by two min and max curves, but I failed. i tried stl like: polygon(min, max, border=0), where min and max are my curves plotet by plot(max) lines(min)
2009 Apr 01
1
Invalid or corrupt kernel image
Hi there, I try to boot tiny core linux with PXE boot (pxelinux.0) over ethernet. But during the boot I get 2 times a - Invalid or corrupt kernel image - message. The third time the bzImage boots fine. Could someone help me? /agni ____________________________________________________________________ Psssst! Schon vom neuen WEB.DE MultiMessenger geh?rt? Der kann`s mit allen:
2009 Mar 04
3
Converting file system
Hi @all! I tested what happens with a file which is saved at a FAT32 partition and then this partition is converted to NTFS. So first I transfered the file with rsync from the FAT32 partition to my Linux /home folder. Then I converted the FAT32 partition to NTFS. After the convertation I transfered the file again to see what has changed (amount of data). I was surprised!!!! Nothing has changed!!!
2008 May 23
1
Fwd: Re: Model aircraft simulator Aerofly prof. deluxe
Hallo again, the last debug massage was: winedbg H:\\flyrun.exe WineDbg starting on pid 0042 0x7b875fb2 start_process+0xc2 in kernel32: movl %esi,0x0(%esp) Wine-dbg>step Single stepping until exit from function, which has no line number information. Invalid address (0x7b875fb7 start_process+0xc7) for breakpoint 0, disabling it Process of pid=0013 has terminated Thanks for your tips and
2008 Dec 12
1
wiki
Hi, I would like to add a page to the wiki describing the installation and configuration of Centos 5.2 on a Dell Latitude D830. My login would be SergeKoganovitsch Kind regards, Serge -- Psssst! Schon vom neuen GMX MultiMessenger geh?rt? Der kann`s mit allen: http://www.gmx.net/de/go/multimessenger
2008 Dec 23
1
Docu for Winbind using userprincipalName (UPN)
Hi Samba-Group, my name is carsten from cologne. I would like to use samba/winbind in a Windows AD 2k3, 2k8 multi-domain environment as workstation. All users from the AD should be able to logon via ssh for example. It would great to use the MS userprincipalName (UPN). I am using samba 3.2.6.37 from sernet on a centos 5.2 system. The normal authentication by domain+username works fine.