similar to: pxelinux 2.11 unable to mount root fs

Displaying 20 results from an estimated 1000 matches similar to: "pxelinux 2.11 unable to mount root fs"

2005 Apr 21
1
tftpd-hpa file download status
Quick question: is it possible to get the status of files being downloaded from the tftp server? Perhaps from a log file? Perhaps from an RPC call? I'm using tftpd-hpa along with PXELinux and it would be really nice if I could query the download progress of the kernel and ramdisk images. Thanks, Salman
2011 Jan 07
2
XEN on CentOS 5.5 - Cannot create VM using Local Install (grayed out)
Hello community! I''m running into some strange problem with my CentOS while trying to create a new VM using virt-manager. I''m connected locally and when I''m following the wizard, at the time it asks me to select the installation option I can only select Network Install. I am pretty messed up ,being trying to search a whole net for last week ,but cant fix it Any idea
2007 Jan 27
3
Samba running slow
Hello everyone: Over the past few years I have been a happy samba user, running samba on Redhat / FC platforms. Recently I upgraded hardware, and Samba hasn't been performing well at all.. which makes me sad :-( The new hardware is Asus P5B board with a dual-core intel processor. This board has an onboard Realtek RTL8111/8168B gigabit ethernet controller, which was a hassle to setup.
2003 Oct 13
5
initramfs as an initrd replacement
Hi , One of the things I am working on requires me to have a kernel and an initrd (as root filesystem , based on busybox) in one single image. I am trying to use initramfs for this, but there are a few things that I just can't figure out. As a test, I made a cpio archive of my own for the kernel source (plain 2.6.0-test5). Everything gets unpacked just fine during boot. Somehow I was
2009 Aug 28
2
No route matches "/%20questions/showans/1" with {:method=>:g
Hi i face this problem when i submit the information while evaluating the a new page in a already done scaffold...........the new page is "showans"......i write the link_to tag like this " <%= link_to ''Submit'', :controller => " questions", :action => "showans", :id => @question.id %>" -- Posted via
2009 Apr 22
1
gpxelinux and cramfs
Hello all- I'm very new to the whole idea of booting a machine from a network server, so please go easy on me until I can get my head wrapped around it all. I have a boot image that I want to be able to serve over the wire to client machines. I have a kernel and a file system image that I've put on a USB stick, and it boots fine from there. However, I have something strange happening
2005 Jan 13
0
[memdisk] remote boot fails: Non-System disk error
Begin forwarded message: > From: Salman Haq <salman.haq at asti-usa.com> > Date: January 13, 2005 4:56:34 PM EST > To: "H. Peter Anvin" <hpa at zytor.com> > Subject: Re: [syslinux] [memdisk] remote boot fails: Non-System disk > error > > > All right, thanks. I'm going to continue to try a few things and let > you know what finally worked.
2012 Oct 21
5
Error occured while evaluating nil
This is the code if !params[:ratings].nil? params[:ratings].each_key do |r| @selected_ratings << r @movies << Movie.where(''rating = :rating'', :rating => r) @sort = params[:sort] end elsif @selected_ratings = @all_ratings @movies = Movie.order(@sort) @sort = params[:sort] end This is the error You have a nil object
2016 Apr 18
3
Sum of Numeric Values in a DF Column
Hi, I request help with the following: INPUT: A data frame where column "Lower" is a character containing numeric values (different count or occurrences of numeric values in each row, mostly 2) > dput(dd) structure(list(State = c("Alabama", "Alaska", "Arizona", "Arkansas", "California"), Lower = c("R 72?33",
2008 Apr 05
6
Can''t get template (domU) to work
Hello All, I have been having a very difficult time getting any template to work on xen. Here is what I am running root@personal:/etc/xen-tools# xm info host : personal release : 2.6.22-14-xen version : #1 SMP Tue Feb 12 09:27:26 UTC 2008 machine : i686 nr_cpus : 2 nr_nodes : 1 sockets_per_node : 1
2019 Feb 10
4
Compiling GNU C Library (glibc) with llvm
Hi All, I was trying to build GNU C Library (glibc implementation) using the clang compiler in a x86_64 Linux system. However, whenever I try to set the clang compiler as the compiler in the configure script of glibc, I am getting the following error. checking if clang is sufficient to build libc... no I did a quick research to see why does clang compiler is not sufficient to build the glibc
2009 Nov 04
3
[PATCH x 3] Three small fixes for Debian
These small fixes are required to fix the build and tests on Debian (using the debootstrap/debirf appliance). There is currently another bug in the Debian tests which I'm looking into. hexdump always fails as follows: libguestfs: error: hexdump: hexdump: /test123: hexdump: /sysroot/test123: Bad file descriptor Rich. -- Richard Jones, Virtualization Group, Red Hat
2011 Jun 30
6
puppet autosign by VLAN IP
Hi, Can puppet autosign work by giving vlan IP instead of domain? For example, in the autosign.conf file, instead of using *.mydomain.org, I want to give 172.18.133.* But it does not seem to work if I give the IP address. But I don''t want to limit the client from *.mydomain.org by only allow certain vlan client not all the are in the same domain. Thanks, -Haiyan -- You received this
2006 Jun 17
3
If Trying to Recover a Damaged Partition: kbs-CentOS-Extras Has a Tool
Recently (and for ages, I'm sure) folks have suffered partition destruction and had to try and recover. In the recent thread, the victim eventually had to resort to Google and fond some package that I can not remember now. Well, I was perusing my YumInfo.lst.05, for general info, and I discovered this (potential) little gem. Thought I would pass it on and make it "more googleable"
2008 Jul 29
2
syconf(_SC_PAGESIZE) versus getpagesize()
hello karel, thanks a lot for the klibc portability merges. current HEAD klibc failure: mkswap.c: In function ?init_signature_page?: mkswap.c:148: error: ?_SC_PAGESIZE? undeclared (first use in this function) although POSIX encourages sysconf() could util-linux use getpagesize() ? -- maks
2013 Mar 31
10
Debootstrapping a rootfs for Xen on FastModels A15
Hi, I''ve tried several different approaches to debootstrap a working rootfs for with a Cortex A15 model ( FastModels ) and Xen but still face some issues. Some information on my setup. For a Dom0 kernel I''m using the latest version from git://github.com/torvalds/linux.git, I attached my config as it might be of some use for others. I''m using the latest Xen unstable
2016 Apr 18
2
Sum of Numeric Values in a DF Column
... and here is a non-dplyr rsolution: > z <-gsub("[^[:digit:]]"," ",dd$Lower) > sapply(strsplit(z," +"),function(x)sum(as.numeric(x),na.rm=TRUE)) [1] 105 67 60 100 80 Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom
2005 Aug 29
9
can a class find out it''s instance name?
Hi friends - a javascript question.... Does the prototype object add some way for a class to find out the variable name of its instance variable? Or does javascript have some built in way to do this? This is confusing to describe - but if I define a variable as some object: var myVariable= new Widget(''fdfa''); can some built-in method inside the Widget class be
2000 Sep 19
1
Re: more experience with formulas
>>>>> "WSt" == Werner Stahel <stahel@stat.math.ethz.ch> writes: [to me privately] WSt> I do not want to call this a bug, but it bugged me. Please try the WSt> following: WSt> tform <- sqrt(RADAI) ~ sqrt(RADAI.e) + TAGE.ej + SPITAL + ARZT + DAS28 + WSt> SJC + TJC + DGA + HAQ + PGA + PAIN + YEAR.SYM + YEAR.DIA + WSt> ALTER +
2016 Apr 18
0
Sum of Numeric Values in a DF Column
## Continuing with your data AA <- stringr::str_extract_all(dd[[2]],"[[:digit:]]+") BB <- lapply(AA, as.numeric) ## I think you are looking for one of the following two expressions sum(unlist(BB)) sapply(BB, sum) On Mon, Apr 18, 2016 at 12:48 PM, Burhan ul haq <ulhaqz at gmail.com> wrote: > Hi, > > I request help with the following: > > INPUT: A data frame