Displaying 20 results from an estimated 1000 matches similar to: "Support DHCP sname field in PXELINUX"
2007 Jun 08
2
syslinux-3.36 Physical Floppy Disk Access Problem
Hello,
I am using the pxelinux.0 and memdisk files from distribution syslinux-3.36.
I am no longer able to access the real floppy disk drive B: instead I just
get a mirrored copy of the emulated floppy disk A:
The default config file is as follows
label 1
kernel memdisk
append initrd=kd202.img
I was previously using the sysliunx-3.20 distribution which gave me access
to the real floppy
2015 Nov 03
2
dovecot-lda can't create /var/mail dotlocks on debian
and, are you SURE that dovecot-lda has mail in it's group list when it is
executing?
On Tue, Nov 3, 2015 at 2:12 PM, Larry Rosenman <larryrtx at gmail.com> wrote:
> Hrm. if you turn up the debug on lda, do you get any more of a clue?
>
> Those permissions look fine to me.
>
>
> On Tue, Nov 3, 2015 at 2:10 PM, John Clements <johnbclements at gmail.com>
>
2015 Nov 03
1
dovecot-lda can't create /var/mail dotlocks on debian
Nov 3 12:23:05 desmond dovecot: lda(granitemon): Debug: Effective
uid=1003, gid=1003, home=/home/granitemon
Nov 3 12:23:05 desmond dovecot: lda(granitemon): Error:
setegid(privileged) failed: Operation not permitted
so it's running as the normal user, and NOT with the mail group.
I'm using exim with LMTP. LMTP is NOT a bad thing, and might make your
life easier. It does allow you
2015 Nov 03
2
dovecot-lda can't create /var/mail dotlocks on debian
I've been using dovecot+postfix happily for many years, and I'm now
configuring it for a new machine. However, I'm running into an old problem
again, and thinking that there must be a better solution.
The problem is that dovecot-lda is unable to create dotlock files in the
/var/mail directory.
Dovecot version: 1:2.2.13-12~deb8u1 (I'm guessing this is upstream version
2.2.13)
OS:
2015 Nov 03
2
dovecot-lda can't create /var/mail dotlocks on debian
clements at desmond:/var/log$ ls -lda /var/mail
drwxrwsr-x 2 root mail 4096 Nov 2 22:07 /var/mail
Best,
John Clements
On Tue, Nov 3, 2015 at 11:52 AM, Larry Rosenman <larryrtx at gmail.com> wrote:
> what is the full permissions of /var/mail?
>
>
> ls -lda /var/mail
>
> On Tue, Nov 3, 2015 at 1:49 PM, John Clements <johnbclements at gmail.com>
> wrote:
>
2011 Aug 27
3
all combinations of the elements of two vectors
Dear R-help readers,
I'm sure this problem has been answered but I can't find the solution.
I have two vectors
v1 <- c("a","b")
v2 <- c(1,2,3)
I want an easy way to produce every possible combination of v1, v2 elements
Ie I want to produce
c("a1","a2","a3", "b1","b2","b3")
regards
Desmond
Desmond
2010 Apr 04
2
logistic regression in an incomplete dataset
Dear all,
I want to do a logistic regression.
So far I've only found out how, in a dataset of complete cases.
I'd like to do logistic regression via max likelihood, using all the study
cases (complete and incomplete). Can you help?
I'm using glm() with family=binomial(logit).
If any covariate in a study case is missing then the study case is
dropped, i.e. it is doing a complete case
2002 Jun 03
2
Help with 2.2.4 binary build
Hi folks,
I'm getting these messages when compiling 2.2.4 on Solaris 7 with gcc
version 2.95.3:
% ./configure --with-utmp
% make
Compiling smbd/password.c
smbd/password.c: In function `grab_server_mutex':
smbd/password.c:1198: warning: passing arg 1 of `message_named_mutex'
discards qualifiers from pointer target type
Compiling lib/system.c
lib/system.c: In function
2002 Jun 14
2
Help: dfree command
Hi folks,
I'm trying to use a custom dfree command to have my Samba share reports
accurate disk usage, here my dfree script (I pretty much copied it right
off the smb.conf man page)
#!/bin/sh
/bin/df -k $1 | tail -1 | awk '{print $2" "$4}'
In smb.conf, I included this line:
dfree command = /usr/local/admin/samba-2.2.4/bin/dfree
This dfree command is root owned,
2006 May 09
4
ks.test one-sample - where can I get a list of the strings specifying the distribution?
Dear all,
One can use ks.test(x,y) for a one-sample kolmogorov-smirnov test:
x being the data sample
y being a string specifying a distribution
I notice the help on ks.test does not tell you how to get such a list. Is
this a hole in my R knowledge?
Where can I get a list of the strings specifying the possible
distributions?
and more specifically
What would be the string and following
2015 Oct 29
4
Trying to get Search::Xapian perl module to compile on win32
The disclaimer automatically added and is not intended to limit legitimate discourse, and any code I write for this is expected to be licensed under whatever license the original work is using.
I haven't tried compiling latest code under visual studio yet (is this possible?). I wonder if there is a way to tell gcc to not mangle the names during cross compile. I was able to successfully
2007 Oct 11
2
test for whether dataset comes from a known MVN
Dear all,
I have a multivariate dataset containing 100,000 or more points.
I want find the p-value for the dataset of points coming from a
particular multivariate normal distribution
With
mean vector u
Covariance matrix s2
So
H0: points ~ MVN( u, s2)
H1: points not ~ MVN( u, s2)
How do I find the p-value in R?
To me this is a likelihood ratio test problem.
In H0 the parameters are
2013 Jun 26
3
XYZ data
I have x, y, z data. The x, y fields dont change but Z does. How do I add a
very small number onto the end of each x, y data point.
For example:
Original (X) Original (Y) Original (Z)
15 20 30
15 20 40
New (X) New (Y)
2015 Oct 28
2
Trying to get Search::Xapian perl module to compile on win32
Resurrecting an old thread from 2012! Finally got back to working on this. I have been stuck in JavaScript land for too long.
Come to find out, on windows, perl does indeed define open to be win32_open and close to be win32_close. This is done in perl/lib/CORE/win3iop.h. So, to get past this problem, I had to modify Xapian.xs to do an #undef of open and close if WIN32 is defined.
Also, I had
2012 Jun 26
2
Modify $TERM from config
The terminal programs (xterm, gnome-terminal, etc.) in Fedora have all
supported 256 colors for quite a while, so there's a proposal for Fedora
to switch them to using "xterm-256color" for $TERM. One drawback would
be when you SSH to another host that doesn't have an up-to-date terminal
database and doesn't recognize "xterm-256color" (but does know
2009 Jan 14
1
mangled filenames
Hi all,
I'm running Samba 3.0.31_1,1 on FreeBSD 7.0.
I have a problem where some files on the fileserver appear to have
illegal characters in them and so look mangled-up when viewed over Samba.
Here's an example, listing files over Samba:
rococo% ls PR
Archive
Awards
ACD76Y~N <-- Inhouse folder
AOBC8G~A <-- Outhouse folder
Listing the same files directly on the
2007 Jun 10
3
Problem booting extlinux from disk
Hi,
I am having a problem booting from a disk installed with extlinux. The
exact configuration that worked with version 3.36, when upgraded to
3.50, appears to still work on the same disk. But if I zap out the disk
(i.e. start from scratch again) and install extlinux, the disk fails to
boot. Extlinux stops at the boot: prompt after displaying "Could not
find kernel image: linux".
It
2007 Apr 12
2
[PATCH] Make com32 printf obey width-restriction on %s
Hi,
The following patch is against 3.36. It lets the width-modifier to the
%s conversion specifier restrict the length of the formatted string as
well as expand it. In addition, it adds the strnlen function, which
only exists as a prototype today.
--
Arne.
--- syslinux-3.36/com32/lib/Makefile.orig 2007-02-10 21:47:07.000000000
+0100
+++ syslinux-3.36/com32/lib/Makefile 2007-04-12
2015 Sep 12
2
pxelinux tries to load ldlinux.c32 from DHCP server, instead of next-server
On Sat, Sep 12, 2015 at 6:37 PM, Gene Cumm <gene.cumm at gmail.com> wrote:
> On Sat, Sep 12, 2015 at 10:23 AM, Geert Stappers <stappers at stappers.nl> wrote:
>> Euh, could this be reviewed:
>>
>> diff --git a/core/fs/pxe/dhcp_option.c b/core/fs/pxe/dhcp_option.c
>> index 8d93a6a..b82e944 100644
>> --- a/core/fs/pxe/dhcp_option.c
>> +++
2017 Mar 18
2
kerberos issue (SPN not found) with windows Hyper-V ( samba 4.5.3 AD)
I made some progress with the issue, but didn't solve it completely
It's basically a kind of bug (i'm not sure if it's on kerberos side or
samba, I think samba is the culprit here (?).
Microsoft uses kind of weird SPN for Hyper-V. Weird as there are
"spaces" in the string - which is kind of unique as far as SPN's go,
usually SPN form a complete string.
So I kind