similar to: Problems with isolinux.cfg

Displaying 7 results from an estimated 7 matches similar to: "Problems with isolinux.cfg"

2008 Oct 13
6
Strange Lockup
Hi All, We seem to have a strange problem with our NEC ML4 pcs. When using pxelinux to network boot, we are getting our menu (using menu.c32) when we choose a option the machine just locks up. If the option requires a password it shows the password box , I put in the password and then it locks up. But strangely the machine will boot from local disk which is an option on the boot menu. Our
2011 Feb 08
2
Extrcat selected rows from a list
Hi, I have two lists 1) List1- 30,000 rows and 104 columns 2) List2- a list of 14000 selected rownames  from List 1 Now, I want to extract all the 104 columns of List1  matching with the 14000 selected rownames from List2.  Psedocode will be something like this: match rownames(List2) with rownames(List1) extract selected matched 104 coloumns from (List1) strore in-> List3 So the
2004 Oct 23
3
DVD ISO
This script mkdvdiso.sh works for me to make and dvd iso image from the 3 cd's. You can download it from here ftp://people.redhat.com/ckloiber/mkdvdiso.sh
2004 Nov 04
2
dvd iso's
Well that didn't work. I got a bootable dvd out of it but the centos installed did not detect the media as having the installation files. It asked for a cd instead of recognizing the dvd. Winiso cannot handle dvd's..:( Anyone have a way to make the centos installer realize all its files are on the dvd instead of looking for three cd's? -- My "Foundation" verse:
2005 Nov 11
0
Re: Problem with wine 0.9.1 debian packages (debian sarge)
On Fri, 2005-11-11 at 19:26 +0100, Jonas Freienhofer wrote: > Hi, > > I have a problem with the wine 0.9.1 .deb-packages on debian sarge. > Every time I try to start an application with wine I get an error that > libXxf86dga.so.1 can't be opened. > I searched that file but it doesn't exist on my system. > With the preview 0.9.0 version I didn't had this problem.
2006 Feb 05
6
WinRAR.exe errors
I had instaled winrar3.51 and I get this errors: fixme:actctx:CreateActCtxW stub! err:rebar:REBAR_AdjustBands Phase 1 failed, x=692, maxx=-4, start=0, end=0 err:rebar:REBAR_AdjustBands Phase 1 failed, x=692, maxx=-4, start=0, end=0 err:rebar:REBAR_AdjustBands Phase 1 failed, x=40, maxx=-4, start=1, end=1 err:rebar:REBAR_AdjustBands Phase 1 failed, x=692, maxx=-4, start=0, end=0
2002 Oct 07
0
Why are big data.frames slow? What can I do to get it fas ter?
Extracting from data frame one element at a time the way you did is expensive. I.e., test[i, 6] is slower than test$whatever[i]. As an example: > dat <- data.frame(a = sample(LETTERS, 1e6, replace=TRUE), b=1:1e6, + c=rep("A", 1e6)) > dat$a <- as.character(dat$a) > dat$c <- as.character(dat$c) > > system.time( + for(i in 1:10) { + dat[i, 3]