similar to: Computer restarts after creating new guest

Displaying 20 results from an estimated 10000 matches similar to: "Computer restarts after creating new guest"

2004 May 25
1
Share violation on file error
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi! I see some strange errors on a samba-3.0.2a PDC and fileserver running under Linux. Every now and then users are not able to access some random file. Windows tells the user that the "file is already opened" or some similar error message (it's an error message in german) The files are varying, I see all kinds of filenames where
2004 Jul 31
0
SSH scanning attempt vias "guest" and "admin" accounts
There has been some discussion on the gentoo security list of late about a new attempt to find ssh vulnerabilities. No one has reported a successfull break in as far as I know, but I though the cross post couldn't hurt. Dan Margolis (krispykringle at gentoo.org) has put together some notes about it. http://dev.gentoo.org/~krispykringle/sshnotes.txt Regards, Jake ===== Jacob Hawkes, B.
2011 Jun 09
1
SIP/IAX guest access?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I have a general question about SIP access for nonregistered users. I would like to make it possible for basically anybody to make a SIP call to my asterisk without having to have a user account, but in a specific context. So that e.g. somebody could make a SIP call to SIP/stefan at my.asterix.pbx and it would go like this: [incoming_guest]
2003 Jun 25
4
Searching for Doku Samba with LDAP
Hy * I'm searching for Doku acting as an PDC in an Windows environment. I was able to set up the Ldap-Directory itself, storing the Users in the Directory, this all is working. But was not able to let the Workstations join the Domain. Here i don't find Dokumentation about it. Can anyone send me links about Dokumentation about LDAP and Samba, acting as an PDC. Thank you very much
2003 May 30
2
color in plot title: title(sub="something", col=4)
Is there a way to specify the color of the main title, the subtitle, or the axis labels? I mean, for instance, something like title(main="cougar", col=2) For me, the above command produces the color black; that is, the "col" argument has no effect. I'm on a Windows 2000 machine with > version _ platform i386-pc-mingw32 arch i386 os mingw32 system
2024 Mar 22
1
Problem with new version of R: Mutated vocals
Dear ladies and gentlemen, I have recently installed the latest version of R (4.3.3) for windows. Now I have the following problems with mutated vowels like ?, ?, etc. Here is an example: If I type the command: Dir <- "C/Users/macho/Documents/_LVn/Experimentelle ?bungen" in the R console there is no problem. However, if I put the same command into a source file (e.g. Test.r) and call
2005 Apr 25
2
residuals in lmer
Does anyone know how to extract residuals in lmer? Here's the error I get: > crop.lme=lmer(response~variety*irrigation*pesticide+(1|rep)+(1|rep: pesticide)+(1|rep:pesticide:irrigation), crop.data) > qqnorm(crop.lme) Error in qqnorm.default(crop.lme) : y is empty or has only NAs > resid(crop.lme) NULL Thanks! --Jake
2005 May 16
2
a problem sourcing a file using chdir=TRUE
Dear R-users, I used to give commands such as: > source(file="~/path/to/file.R", chdir=TRUE) but with the latest v. 2.1.0 it does not seem to work anymore. I tried to figure out what it was going on and it seems that the string for which > class(file) [1] "character" is changed to > class(file) [1] "file" "connection" when the connection is
2005 Jun 16
2
heatmap aspect ratio
Hi all, Does anyone know of a fairly easy way to "stretch" a heatmap vertically? I've got 42 arrays and would like to be able to see as many significant genes as possible (right now I can only get 50 genes with it still being readable). In some comparisons there are several hundred significant genes. I've fiddled with the "asp" argument, but that doesn't
2001 May 16
1
stl in library(ts)
I am running R 1.2.2 under Linux. When using the function stl in the ts library, how can I save the seasonal component? What I would like was something like: library(ts) data(nottem) data.stl <- stl(nottem, "per") x <- data.stl$sea This what I get: > x NULL I would, however, like to store in x the seasonal component. Thanks in advance. Francisco. -- Francisco
2009 Jul 26
1
obtain names of variables and data from glm object
Suppose we have some glm object such as: myglm <- glm( y ~ x, data=DAT) Is there an elegant way--or the "right way" within the R way of thinking--to obtain the names of the response variable, the predictor variables, and the dataset, as character strings? For instance, suppose the "right way" was to use the (currently fictitious) functions theresponse(), thepredictors(),
2004 Jun 14
2
ordering points as vertex of a polygon
Dear R-users, Suppose I have the following x-y coordinates which give the boundaries of a polygon: > x <- c(5,4,5,9,6,6,4,7,10,7,10,4,10) > y <- c(6,3,2,6,3,7,5,4,4,7, 5,4, 6) I would like to plot the following graph: > plot(x,y) > ord <- c(7,12,2,3,5,8,9,11,13,4,10,6,1) > polygon(x[ord],y[ord]) How I can obtain the above ordering (in the example an anti-clockwise
2005 Jul 21
3
heatmap color distribution
Hi all, I've got a set of gene expression data, and I'm plotting several heatmaps for subsets of the whole set. I'd like the heatmaps to have the same color distribution, so that comparisons may be made (roughly) across heatmaps; this would require that the color distribution and distance functions be based on the entire dataset, rather than on individual subsets. Does
2004 Jul 23
2
lme4 groupedData is missing
help.search("groupedData") says that it's part of the lme4 package, but it appears not to be there (details below). Is this because lme4 is new and (perhaps) still under development? > update.packages() trying URL `http://cran.r-project.org/bin/windows/contrib/1.9/PACKAGES' Content type `text/plain; charset=iso-8859-1' length 19113 bytes opened URL downloaded 18Kb >
2003 Nov 04
5
read.spss Error reading system-file header
Is there any documentation on what kind of SPSS file can and cannot be read by read.spss? Alternatively, how can one modify or "clean" an SPSS file to make it readable by read.spss? What properties must a *.sav file before read.spss can read it? The file in this example is 270KB, with 5 rows and 173 columns. I have no trouble reading larger files with read.spss, so it's not
2009 Sep 14
2
symbols(x,y, circles=sqrt(N)) with lattice xyplot
How would I create the following plot using lattice? symbols( combPsummary$pastRate, combPsummary$finRate, circles=sqrt(combPsummary$N) ) The idea is to plot finRate vs pastRate using circles whose areas are proportional to the number of people in each group. The following attempt does not really work: xyplot( finRate ~ pastRate , data=combPsummary , panel=function( x, y,
2005 Apr 04
3
plotting mathematical notation and values substitution
Dear R-users, I'm trying to add a title on a plot with both mathematical notation and values substitution. I read the documentation and search the mailing list but I was not able to solve my problem. Actually, there is a message by Uwe Ligges on June 2003 which addresses a question very close to mine, but the code provided doesn't work. The code is the following: # I add this to let you
2008 Jun 28
3
courier IMAP to dovecot migration: folders not showing up
i have been running postfix + courier-imap + cyrus sasl for several years and have some prior experience with dovecot + postfix and had no problems. now that i'm trying to convert an existing courier-imap configuration to dovecot and all the various parts work together (e.g. mail delivery and dovecot sasl), i cannot get the folder subscription issue sorted. the machine is running netbsd
2015 Jul 06
0
Error attaching tape drive device to KVM guest
Hello, i'm trying to configure a host SCSI device (tape drive) so that it is available in a KVM guest VM, but am receiving an error when attempting to attach the device. My guest xml has the following scsi controller defined: <controller type='scsi' index='0' model='virtio-scsi'> <alias name='scsi0'/> <address type='pci'
2015 Jul 10
0
Fw: Error attaching tape drive device to KVM guest
A quick follow-up in case anyone else is trying to use IBM tape device within a KVM guest. I didn't get SCSI passthrough below working, but there were two alternatives recommended to me: (1) Use PCI passthrough to give the KVM guest dedicated access to the Fibre Channel HBA PCI card. PCI passthrough seems to be more solid. (2) Use ISCSI to share the tape devices and tape changer