similar to: client hangs on pxelinux

Displaying 20 results from an estimated 1000 matches similar to: "client hangs on pxelinux"

2007 Nov 14
2
PXE in wonderland
Hi, I have collected a bunch of old PII PCs that I am trying to PXE boot. There NICs are old and so I use etherboot floppy to emulate a native PXE boot. I have configured tftp, dhcpd, pxelinux, and all the other stuff. Everything works fine till pxelinux start booting. Then it stucks after printing the IP row. --------------- pxelinux output ----------------------- PXELINUX 3.10 2005-08-24
2008 Mar 07
5
Puzzling coefficients for linear fitting to polynom
Hi, I can not comprehend the linear fitting results of polynoms. For example, given the following data (representing y = x^2): > x <- 1:3 > y <- c(1, 4, 9) performing a linear fit > f <- lm(y ~ poly(x, 2)) gives weird coefficients: > coefficients(f) (Intercept) poly(x, 2)1 poly(x, 2)2 4.6666667 5.6568542 0.8164966 However the fitted() result makes sense: >
2008 Jul 23
3
Quantitative analysis of non-standard scatter plots.
Hi, I am having difficulties in finding ways to analyse scatter plots and quantitatively differentiate between them. Since this is best demonstrated by a figure, I have attached one with 4 subfigures (a)-(d). Qualitatively (and I hope you would agree with me), sub-figures (a), (b), and (d) seem to represent uniform 2d scatters. It is hard for me to quantify it, but it seems as if the envelopes
2014 Nov 28
0
pxelinux efi64 boot woes on hyper-v gen 2
On Thu, Nov 27, 2014 at 8:59 AM, Luke Ledgerd <luke.ledgerd at niteco.se> wrote: > Gene, > > As it happened I started working on this again just as you mailed me. I saw it in IRC. > It appears that PXE-E99 may also be related to MTFTP part of the PXE spec. IBM also says it has something to do with jumbo frames. I tried setting PXE.mtcp-ip to 0.0.0.0 to disable it but still no
2014 Nov 27
2
pxelinux efi64 boot woes on hyper-v gen 2
Gene, As it happened I started working on this again just as you mailed me. It appears that PXE-E99 may also be related to MTFTP part of the PXE spec. IBM also says it has something to do with jumbo frames. I tried setting PXE.mtcp-ip to 0.0.0.0 to disable it but still no joy. The bootfile size shows up as zero because that relates to "option boot-size" in dhcp and doesn't seem to
2005 Feb 25
3
Loops and dataframes
Hi, I am experiencing a long delay when using dataframes inside loops and was wordering if this is a bug or not. Example code: > st <- rep(1,100000) > ed <- rep(2,100000) > for(i in 1:length(st)) st[i] <- ed[i] # works fine > df <- data.frame(start=st,end=ed) > for(i in 1:dim(df)[1]) df[i,1] <- df[i,2] #takes for ever R: R 2.0.0 (2004-10-04) OS: Linux, Fedora Core 2
2006 Aug 01
2
Indexing issue
Hi, R is having the following weird behavior and I am not sure if that is a feature or a bug: I am working on the following "3D" array: > bIm , , 1 [,1] [1,] TRUE [2,] TRUE [3,] TRUE [4,] TRUE [5,] TRUE > class(bIm) [1] "array" > dim(bIm) [1] 5 1 1 When I try to get the first 2D subarray, the whole thing folds into a vector: > bIm[,,1] [1] TRUE TRUE TRUE
2014 Nov 28
2
pxelinux efi64 boot woes on hyper-v gen 2
Gene, I found a document from IBM that explains why it didn't like Vendor-Class-Identifier option I was using "PXEClient" was causing EFI boot rooms to dummy spit, that's very useful, that combined with RTFMing the PXE specs 3.0-3.2 might solve my problem if I keep at it. http://www-01.ibm.com/support/docview.wss?uid=swg21247032 Even the PXELinux docs suggest encapsulating
2005 Apr 19
2
Printing a single "\" character
Hi, I have a small R question: how to print a single "\" character? I have the following results: > print("\") does not work > print("\\") [1] "\\" I need to make the following substitution as well, but it does not work either: > sub("_","\_","g_g") [1] "g_g" Thanks in advance, Firas.
2003 Jun 15
6
pxelinux bootup problems on EPIA-M
Hi, I was wondering if anyone had a good dhcpd.conf and /tftpboot files for a EPIA-M motherboard with RedHat 9.0.... Or maybe just a configuration that works with the EPIA-M (doesn't matter which type of linux). I'm trying to boot the system from the network and it seems to be getting to downloading pxelinux.0 but then nothing happens after that.... I'm using ISC dhcpd V3.0pl2,
2006 Sep 06
3
Intel Boot Agent: PXE-E32: TFTP open timeout for correctly configured tftp-hpa
Hello. In my case I can successfully boot up my Thinkpad X32, but the same configuration doesn't work for my desktop computer with Intel network card, with Intel Boot Agent 2.2 DHCP server is 10.0.0.1, tftpd (used tftp-hpa) runs on 10.0.0.32. netstat told me the daemon listen to 69 UDP port just fine. running tftp in commandline also shows it works (retrieve pxelinux.0 less then 1 second).
2005 Apr 14
2
Printing integers in R "as is"
Hi, I am using the following command to print to a file (I omitted the file details): cat( paste( paste(orientation, start, end, names,"\n"), paste(start, end, "exon\n"), sep="")) where "orientation" and "names" are character vectors and "start" and "end" are integer vectors. The problem is that R coerce the integer vectors
2006 Aug 09
2
Speeding indexing and sub-sectioning of 3d array
Hi, I am having a problem with a very slow indexing and sub-sectioning of a 3d array: > dim(arr) [1] 245 175 150 For each point in the array, I am trying to calculate the mean of the values in its surrounding: mean( arr[ (i - radius):(i + radius), (j - radius):(j + radius), (k - radius):(k + radius)] ) Putting that code in 3
2002 Jan 14
2
few question
hi, i'm wondering aboot the option "vendor-class identifier" what means these two number? i have actually us it in my dhcpd.conf, and all is working, but i don't know what it mean.... if substring (option vendor-class-identifier, 0, 3) = "PXE" i have the same question for the "option vendor-encapsulated-options" ? this is just because, i just read a ltsp
2014 Mar 05
2
Cannot chain to another PXE server on the same subnet
Sorry for top-posting but my webmail forces me to. I added -W to the APPEND line as suggested but I'm still getting the same result: Booting... Altiris, inc. X86PC PreBoot, PXE-2.x Enhanced Build ID=402 PXEPreZero: Invalid PXE Server list format. and the client PC freezes right there. Here's the full content of my dhcp.conf: max-lease-time 86400; ddns-update-style interim;
2014 Nov 28
3
pxelinux efi64 boot woes on hyper-v gen 2
<snip > A: Because it messes up the order in which people normally read text, especially the archives of mailing lists. Q: Why is Top-posting such a bad thing? I apologize in advance for the potentially-dumb comments/questions. _ Do you really need the Vendor Class Identifier option included in the "if option arch" conditions? _ Do you really need the Vendor Class Identifier
2006 Apr 27
1
R interface to ImageMagick
Hi, I was wondering if anyone is aware of an R interface to ImageMagick (www.imagemagick.org)? Since R does not support a lot of image processing functions, having such an interface could be very useful. Alternatively, ImageMagick has a couple of different interfaces (including to C and C++). I was wondering if one can use these to call ImageMagick functions from R. I am posting a similar
2008 Aug 13
1
The standard deviation of measurement 1 with respect to measurement 2
Hi, I have two (different types of) measurements, say X and Y, resulting from the same set of experiments. So X and Y are paired: (x_1, y_1), (x_2, y_2), ... I am trying to calculate the standard deviation of Y with respect to X. In other words, in terms of the scatter plot of X and Y, I would like to divide it into bins along the X-axis and for each bin calculate the standard deviation along
2014 Mar 05
3
Cannot chain to another PXE server on the same subnet
----- Original Message ----- From: Gene Cumm <gene.cumm at gmail.com> > It's been a while since I used Yahoo but I didn't think I had > that issue.? GMail does default to top-posting Doing it manually... didn't find that option. > Perhaps also try -o 43.x=01:04:0a:d7:90:3c:ff (which will set the > mtftp option) in addition to -W. Tried it but still the same error.
2014 Mar 04
2
Cannot chain to another PXE server on the same subnet
Hi, I have a Linux server at ip address 10.215.144.7 running DHCP, TFTP and syslinux. DHCP config contains the following: next-server 10.215.144.7; filename "/pxe/syslinux/pxelinux.0"; and the 'default' pxelinux.cfg contains: LABEL altiris ??? MENU LABEL ^7. Altiris ??? COM32 pxechn.c32 ??? APPEND 10.215.144.60::/BStrap/x86pc/BStrap.0 When a PXE client boots in my network