search for: haq

Displaying 18 results from an estimated 18 matches for "haq".

Did you mean: had
2005 Apr 15
3
pxelinux 2.11 unable to mount root fs
Hi, I've been using PxeLinux to boot our Debian kernel successfully for some time now. I recently increased the size of the ramdisk from about 484 MBs to 517 MBs and encountered the following error during bootup: --- RAMDISK: Compressed image found at block 0 Freeing initrd memory: 105519k EXT3-fs: Magic mismatch, very weird! cramfs: wrong magic sh-2021: reiserfs_read_super: can not find
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...
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",
2016 Apr 18
2
Sum of Numeric Values in a DF Column
...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 where column "Lower" is a character containing numeric >> values (different count or occurrences of numeric values in each row, >> mostly...
2000 Sep 19
1
Re: more experience with formulas
...; == 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 + IndV + m.NSAIDs + m.Stereoids + DM.Cyclosp + DM.Penic WSt> WSt> as.character(tform) --> length-3 vector "~" "<LHS>" "<RHS>". However, the end of <RHS> is TRUNCATED! and that tru...
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 where column "Lower" is a character containing numeric > values (different count or occurrences of numeric values in each row, > mostly 2) > >> dput(dd) &g...
2016 Apr 18
0
Sum of Numeric Values in a DF Column
...- 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 where column "Lower" is a character containing numeric >>> values (different count or occurrences of numeric values in ea...
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
2002 Feb 07
1
chroot patch for openssh 3.0.2p1
High all, I'm running openssh 3.0.2p1 and it seems that the chroot patch delivered in the /contrib folder of the portable distrib does not apply to this release. Does anyone know if i can find an updated patch. Thanks -- Johan LEGROS Direction Informatique R?seau & T?l?com Tel : +33 1 71 71 56 62 Fax : +33 1 71 71 55 77 Email : jlegros at canal-plus.fr URL :
2006 Dec 29
1
E1 controller
...8-port e1 controller, i am some confuse about e1 commands that is when and why we use *cahnnel-group* and *pri-group* e1 controller command let me konw the above question, i have further more questions related to this issue. i shall be very thankfull to you -- With Best Regards Muhammad Aslam ul Haq -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20061229/94f1c15c/attachment.htm
1997 Dec 16
0
SAMBA digest 1524
...user *does* exist. When I try to connect to the server, Win95 gets a message saying "You must supply a passowrd to make this conection. \\salamanda\IPC$". Security = server, the WinNT boxes have SP3 loaded, and this is Samba 1.9.18pl13. This behavior has shown since 1.9.17pl1. 1.9.17 haq worked fine, but anything since then has not worked for me. I would really like to get this running. One thing I have tried is the play with the GUEST_SESSSETUP define in local.h, which only lets people connect as guest. It hasn't helped, since these people do have accounts on the NT server...
2013 Nov 28
1
Relative Cumulative Frequency of Event Occurence
Hi, My objective is to calculate "Relative (Cumulative) Frequency of Event Occurrence" - something as follows: Sample.Number 1st.Fly 2nd.Fly Did.E.occur? Relative.Cum.Frequency.of.E 1 G B No 0.000 2 B B Yes 0.500 3 B G No 0.333 4 G B No 0.250 5 G G Yes 0.400 6 G B No 0.333 7 B B Yes 0.429 8 G G Yes 0.500 9 G B No 0.444 10 B B Yes 0.500 Please refer to the code below:
2002 Apr 22
9
Password from open filedescriptor
The included patch adds a new option to the ssh client: -d fd Read the password from file descriptor fd. If you use 0 for fd, the passphrase will be read from stdin. This is basically the same as GPG:s parameter --passphrase-fd. Flames about why this is a bad idea goes into /dev/null. I really need to do this. There are lots of ugly Expect-hacks out there, but I want a more clean
2016 Sep 14
5
[PATCH 1/2] filearch: Add RISC-V architecture.
--- src/filearch.c | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/filearch.c b/src/filearch.c index 5985b73..cbc8372 100644 --- a/src/filearch.c +++ b/src/filearch.c @@ -56,14 +56,16 @@ cleanup_magic_t_free (void *ptr) # endif COMPILE_REGEXP (re_file_elf, - "ELF.*(MSB|LSB).*(?:executable|shared object|relocatable),
2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...Zf at o5 z^=WBo?eqTG!L-)a*6Ql&*x1;RX;!tCefaqJQBhIy=HN$1M}|Wt-{0TEn}yfO!GVE+ zq*N-`-RJ-R|LpASW at ct!U|@4WF3Wo@$oPbyO(IuUSF(ar`tX0OW<jP}GRDi*+u-Zs z>F<|!XSIN1g<D9uzQ^z4+w=PUzN3)M(%kl<k=f77aIGXhY%!Q at I`xi%a8OC)&A_Ir zviJS}+||(e^zxp*oN8=wl81+Zu}tCS?f9;wnx3WY at bUQZ?!Lp!o}#J1u%hAQ=CZcG z>F at gA;^d5tjqK&(Vr6Ob_W0=R?)?A%)7RUD!9CjD-;a-v=<Do_kc4h=c6WM!`}g(E z#J<3<Nd5cz at bvbpueWt|cA=%Mj**z|_4(Y`)q;hK`1}3l-`vvJ;!I6VQ&m~EsiWE3 z-FkyVq=s}IHWu^q^ITtJ{rvj-`uXtl_TAs$6B878czF8w_~-BQg^7>j<Kyx1@$K#H zPEb=_U}Up0E^mi!IyyR%mYwzO>A}IlqoboyQ&+&&w#&am...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...Zf at o5 z^=WBo?eqTG!L-)a*6Ql&*x1;RX;!tCefaqJQBhIy=HN$1M}|Wt-{0TEn}yfO!GVE+ zq*N-`-RJ-R|LpASW at ct!U|@4WF3Wo@$oPbyO(IuUSF(ar`tX0OW<jP}GRDi*+u-Zs z>F<|!XSIN1g<D9uzQ^z4+w=PUzN3)M(%kl<k=f77aIGXhY%!Q at I`xi%a8OC)&A_Ir zviJS}+||(e^zxp*oN8=wl81+Zu}tCS?f9;wnx3WY at bUQZ?!Lp!o}#J1u%hAQ=CZcG z>F at gA;^d5tjqK&(Vr6Ob_W0=R?)?A%)7RUD!9CjD-;a-v=<Do_kc4h=c6WM!`}g(E z#J<3<Nd5cz at bvbpueWt|cA=%Mj**z|_4(Y`)q;hK`1}3l-`vvJ;!I6VQ&m~EsiWE3 z-FkyVq=s}IHWu^q^ITtJ{rvj-`uXtl_TAs$6B878czF8w_~-BQg^7>j<Kyx1@$K#H zPEb=_U}Up0E^mi!IyyR%mYwzO>A}IlqoboyQ&+&&w#&am...
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list. I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without modifications. How did I try it? Created a (non-root) build environment (not a mock ) Installed the kernel.scr.rpm and did a rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee prep-out.log The build failed at the end: Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL Checking
2005 Jan 11
2
[memdisk] remote booting diskless Mini-ITX system
Hi, As the subject suggests, I am trying to remote boot a Mini-ITX system. I am using PXELinux as the bootloader, and Memdisk (2.11) as the 'kernel'. My ramdisk image is a hard drive image based on PC-DOS. Two things go wrong during the boot process. 1. "INT 13 08: Failure, assuming this is the only drive" message 2. "Loading boot sector... booting..." message,